Skip to content

Commit 61e3981

Browse files
committed
CIAM logout needs authority to contain tenant path
1 parent 696a26b commit 61e3981

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.env.sample

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,13 @@ CLIENT_SECRET=<client secret>
1313
# "https://login.microsoftonline.com/TENANT_GUID"
1414
# or "https://login.microsoftonline.com/subdomain.onmicrosoft.com".
1515
#
16-
# Alternatively, leave it undefined if you are building a multi-tenant AAD app
17-
# in world-wide cloud
18-
#AUTHORITY=<authority url>
16+
# Alternatively, use "https://login.microsoftonline.com/common" for multi-tenant app.
17+
AUTHORITY=<your authority url>
1918
#
2019
#
2120
# 2. If you are using a Microsoft Entra External ID for customers (CIAM) tenant,
22-
# configure AUTHORITY as "https://subdomain.ciamlogin.com"
23-
#AUTHORITY=<authority url>
21+
# configure AUTHORITY as https://subdomain.ciamlogin.com/subdomain.onmicrosoft.com
22+
#AUTHORITY=https://subdomain.ciamlogin.com/subdomain.onmicrosoft.com
2423
#
2524
#
2625
# 3. If you are using a B2C tenant, configure the following variables:

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import app_config
77

8-
__version__ = "0.7.0" # The version of this sample, for troubleshooting purpose
8+
__version__ = "0.8.0" # The version of this sample, for troubleshooting purpose
99

1010
app = Flask(__name__)
1111
app.config.from_object(app_config)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ Flask>=2.2
44
Flask-Session>=0.3.2,<0.6
55
werkzeug>=2
66
requests>=2,<3
7-
identity>=0.3,<0.4
7+
identity>=0.5.1,<0.6
88
python-dotenv<0.22

0 commit comments

Comments
 (0)