Skip to content

Commit da7a623

Browse files
authored
Merge pull request #317 from AzureAD/no-more-rtfd
ReadTheDocs, not RTFD
2 parents 72d658b + ef45cc1 commit da7a623

6 files changed

+6
-6
lines changed

sample/confidential_client_certificate_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
client_credential={"thumbprint": config["thumbprint"], "private_key": open(config['private_key_file']).read()},
4949
# token_cache=... # Default cache is in memory only.
5050
# You can learn how to use SerializableTokenCache from
51-
# https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache
51+
# https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache
5252
)
5353

5454
# The pattern to acquire a token looks like this.

sample/confidential_client_secret_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
client_credential=config["secret"],
4848
# token_cache=... # Default cache is in memory only.
4949
# You can learn how to use SerializableTokenCache from
50-
# https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache
50+
# https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache
5151
)
5252

5353
# The pattern to acquire a token looks like this.

sample/device_flow_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
config["client_id"], authority=config["authority"],
3737
# token_cache=... # Default cache is in memory only.
3838
# You can learn how to use SerializableTokenCache from
39-
# https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache
39+
# https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache
4040
)
4141

4242
# The pattern to acquire a token looks like this.

sample/interactive_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
config["client_id"], authority=config["authority"],
3333
# token_cache=... # Default cache is in memory only.
3434
# You can learn how to use SerializableTokenCache from
35-
# https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache
35+
# https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache
3636
)
3737

3838
# The pattern to acquire a token looks like this.

sample/migrate_rt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_preexisting_rt_and_their_scopes_from_elsewhere():
5050
config["client_id"], authority=config["authority"],
5151
# token_cache=... # Default cache is in memory only.
5252
# You can learn how to use SerializableTokenCache from
53-
# https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache
53+
# https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache
5454
)
5555

5656
# We choose a migration strategy of migrating all RTs in one loop

sample/username_password_sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
config["client_id"], authority=config["authority"],
3939
# token_cache=... # Default cache is in memory only.
4040
# You can learn how to use SerializableTokenCache from
41-
# https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache
41+
# https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache
4242
)
4343

4444
# The pattern to acquire a token looks like this.

0 commit comments

Comments
 (0)