├── .github └── ISSUE_TEMPLATE │ └── a-template-reminding-adal-s-status.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── RELEASES.md ├── adal.pyproj ├── adal.sln ├── adal ├── __init__.py ├── adal_error.py ├── argument.py ├── authentication_context.py ├── authentication_parameters.py ├── authority.py ├── cache_driver.py ├── code_request.py ├── constants.py ├── log.py ├── mex.py ├── oauth2_client.py ├── self_signed_jwt.py ├── token_cache.py ├── token_request.py ├── user_realm.py ├── util.py ├── wstrust_request.py ├── wstrust_response.py └── xmlutil.py ├── contributing.md ├── docs ├── Makefile ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ └── index.rst ├── pylintrc ├── requirements.txt ├── sample ├── certificate_credentials_sample.py ├── client_credentials_sample.py ├── device_code_sample.py ├── refresh_token_sample.py └── website_sample.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── config_sample.py ├── mex ├── address.insecure.xml ├── archan.us.mex.xml ├── arupela.mex.xml ├── common.mex.xml ├── microsoft.mex.xml ├── noaddress.xml ├── nobinding.port.xml ├── noname.binding.xml ├── nosoapaction.xml ├── nosoaptransport.xml ├── nouri.ref.xml ├── syntax.notrelated.mex.xml ├── syntax.related.mex.xml └── usystech.mex.xml ├── test_api_version.py ├── test_authentication_parameters.py ├── test_authority.py ├── test_authorization_code.py ├── test_cache_driver.py ├── test_client_credentials.py ├── test_e2e_examples.py ├── test_log.py ├── test_mex.py ├── test_refresh_token.py ├── test_self_signed_jwt.py ├── test_user_realm.py ├── test_username_password.py ├── test_wstrust_request.py ├── test_wstrust_response.py ├── util.py └── wstrust ├── RST.xml ├── RSTR.xml ├── common.base64.encoded.assertion.txt └── common.rstr.xml /.github/ISSUE_TEMPLATE/a-template-reminding-adal-s-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/.github/ISSUE_TEMPLATE/a-template-reminding-adal-s-status.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/RELEASES.md -------------------------------------------------------------------------------- /adal.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal.pyproj -------------------------------------------------------------------------------- /adal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal.sln -------------------------------------------------------------------------------- /adal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/__init__.py -------------------------------------------------------------------------------- /adal/adal_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/adal_error.py -------------------------------------------------------------------------------- /adal/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/argument.py -------------------------------------------------------------------------------- /adal/authentication_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/authentication_context.py -------------------------------------------------------------------------------- /adal/authentication_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/authentication_parameters.py -------------------------------------------------------------------------------- /adal/authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/authority.py -------------------------------------------------------------------------------- /adal/cache_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/cache_driver.py -------------------------------------------------------------------------------- /adal/code_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/code_request.py -------------------------------------------------------------------------------- /adal/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/constants.py -------------------------------------------------------------------------------- /adal/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/log.py -------------------------------------------------------------------------------- /adal/mex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/mex.py -------------------------------------------------------------------------------- /adal/oauth2_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/oauth2_client.py -------------------------------------------------------------------------------- /adal/self_signed_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/self_signed_jwt.py -------------------------------------------------------------------------------- /adal/token_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/token_cache.py -------------------------------------------------------------------------------- /adal/token_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/token_request.py -------------------------------------------------------------------------------- /adal/user_realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/user_realm.py -------------------------------------------------------------------------------- /adal/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/util.py -------------------------------------------------------------------------------- /adal/wstrust_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/wstrust_request.py -------------------------------------------------------------------------------- /adal/wstrust_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/wstrust_response.py -------------------------------------------------------------------------------- /adal/xmlutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/adal/xmlutil.py -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample/certificate_credentials_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/sample/certificate_credentials_sample.py -------------------------------------------------------------------------------- /sample/client_credentials_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/sample/client_credentials_sample.py -------------------------------------------------------------------------------- /sample/device_code_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/sample/device_code_sample.py -------------------------------------------------------------------------------- /sample/refresh_token_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/sample/refresh_token_sample.py -------------------------------------------------------------------------------- /sample/website_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/sample/website_sample.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/config_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/config_sample.py -------------------------------------------------------------------------------- /tests/mex/address.insecure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/address.insecure.xml -------------------------------------------------------------------------------- /tests/mex/archan.us.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/archan.us.mex.xml -------------------------------------------------------------------------------- /tests/mex/arupela.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/arupela.mex.xml -------------------------------------------------------------------------------- /tests/mex/common.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/common.mex.xml -------------------------------------------------------------------------------- /tests/mex/microsoft.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/microsoft.mex.xml -------------------------------------------------------------------------------- /tests/mex/noaddress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/noaddress.xml -------------------------------------------------------------------------------- /tests/mex/nobinding.port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/nobinding.port.xml -------------------------------------------------------------------------------- /tests/mex/noname.binding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/noname.binding.xml -------------------------------------------------------------------------------- /tests/mex/nosoapaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/nosoapaction.xml -------------------------------------------------------------------------------- /tests/mex/nosoaptransport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/nosoaptransport.xml -------------------------------------------------------------------------------- /tests/mex/nouri.ref.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/nouri.ref.xml -------------------------------------------------------------------------------- /tests/mex/syntax.notrelated.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/syntax.notrelated.mex.xml -------------------------------------------------------------------------------- /tests/mex/syntax.related.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/syntax.related.mex.xml -------------------------------------------------------------------------------- /tests/mex/usystech.mex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/mex/usystech.mex.xml -------------------------------------------------------------------------------- /tests/test_api_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_api_version.py -------------------------------------------------------------------------------- /tests/test_authentication_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_authentication_parameters.py -------------------------------------------------------------------------------- /tests/test_authority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_authority.py -------------------------------------------------------------------------------- /tests/test_authorization_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_authorization_code.py -------------------------------------------------------------------------------- /tests/test_cache_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_cache_driver.py -------------------------------------------------------------------------------- /tests/test_client_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_client_credentials.py -------------------------------------------------------------------------------- /tests/test_e2e_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_e2e_examples.py -------------------------------------------------------------------------------- /tests/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_log.py -------------------------------------------------------------------------------- /tests/test_mex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_mex.py -------------------------------------------------------------------------------- /tests/test_refresh_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_refresh_token.py -------------------------------------------------------------------------------- /tests/test_self_signed_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_self_signed_jwt.py -------------------------------------------------------------------------------- /tests/test_user_realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_user_realm.py -------------------------------------------------------------------------------- /tests/test_username_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_username_password.py -------------------------------------------------------------------------------- /tests/test_wstrust_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_wstrust_request.py -------------------------------------------------------------------------------- /tests/test_wstrust_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/test_wstrust_response.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/util.py -------------------------------------------------------------------------------- /tests/wstrust/RST.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/wstrust/RST.xml -------------------------------------------------------------------------------- /tests/wstrust/RSTR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/wstrust/RSTR.xml -------------------------------------------------------------------------------- /tests/wstrust/common.base64.encoded.assertion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/wstrust/common.base64.encoded.assertion.txt -------------------------------------------------------------------------------- /tests/wstrust/common.rstr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureAD/azure-activedirectory-library-for-python/HEAD/tests/wstrust/common.rstr.xml --------------------------------------------------------------------------------