File: .env.sample.external-id

package info (click to toggle)
microsoft-authentication-library-for-python 1.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,320 kB
  • sloc: python: 8,613; xml: 2,783; sh: 27; makefile: 19
file content (26 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This sample can be configured to work with Microsoft External ID.
#
# If you are using a Microsoft Entra External ID for customers (CIAM) tenant,
# configure AUTHORITY as https://contoso.ciamlogin.com/contoso.onmicrosoft.com
AUTHORITY=<authority url>

CLIENT_ID=<client id>

# Uncomment the following setting if you are using a confidential client
# which has a client secret. Example value: your password
#CLIENT_SECRET=<client secret>

# Configure this if you are using a confidential client which has a client credential.
# Example value: {"private_key_pfx_path": "/path/to/your.pfx"}
CLIENT_CREDENTIAL_JSON=<client credential json>

# Multiple scopes can be added into the same line, separated by a space.
# Here we use a Microsoft Graph API as an example
# You may need to use your own API's scope.
SCOPE=<your scopes>

# Required if the sample app wants to call an API.
#ENDPOINT=https://graph.microsoft.com/v1.0/me

# Required if you are testing the username_password_sample.py
#USERNAME=<username>