├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── aad.b2c.config.json ├── aad.django.config.json ├── aad.flask.config.json ├── ms_identity_web ├── __init__.py ├── adapters.py ├── configuration.py ├── constants.py ├── context.py ├── django │ ├── __init__.py │ ├── adapter.py │ ├── middleware.py │ └── msal_views_and_urls.py ├── errors.py └── flask_blueprint │ └── __init__.py ├── requirements.txt └── setup.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/README.md -------------------------------------------------------------------------------- /aad.b2c.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/aad.b2c.config.json -------------------------------------------------------------------------------- /aad.django.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/aad.django.config.json -------------------------------------------------------------------------------- /aad.flask.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/aad.flask.config.json -------------------------------------------------------------------------------- /ms_identity_web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/__init__.py -------------------------------------------------------------------------------- /ms_identity_web/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/adapters.py -------------------------------------------------------------------------------- /ms_identity_web/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/configuration.py -------------------------------------------------------------------------------- /ms_identity_web/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/constants.py -------------------------------------------------------------------------------- /ms_identity_web/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/context.py -------------------------------------------------------------------------------- /ms_identity_web/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ms_identity_web/django/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/django/adapter.py -------------------------------------------------------------------------------- /ms_identity_web/django/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/django/middleware.py -------------------------------------------------------------------------------- /ms_identity_web/django/msal_views_and_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/django/msal_views_and_urls.py -------------------------------------------------------------------------------- /ms_identity_web/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/errors.py -------------------------------------------------------------------------------- /ms_identity_web/flask_blueprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/ms_identity_web/flask_blueprint/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | msal>=1.6.0,<2 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/ms-identity-python-samples-common/HEAD/setup.py --------------------------------------------------------------------------------