diff --git a/sample/confidential_client_certificate_sample.py b/sample/confidential_client_certificate_sample.py index e3b1bf86..7e5d8069 100644 --- a/sample/confidential_client_certificate_sample.py +++ b/sample/confidential_client_certificate_sample.py @@ -48,7 +48,7 @@ client_credential={"thumbprint": config["thumbprint"], "private_key": open(config['private_key_file']).read()}, # token_cache=... # Default cache is in memory only. # You can learn how to use SerializableTokenCache from - # https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache + # https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache ) # The pattern to acquire a token looks like this. diff --git a/sample/confidential_client_secret_sample.py b/sample/confidential_client_secret_sample.py index c7bc7374..d4c06e20 100644 --- a/sample/confidential_client_secret_sample.py +++ b/sample/confidential_client_secret_sample.py @@ -47,7 +47,7 @@ client_credential=config["secret"], # token_cache=... # Default cache is in memory only. # You can learn how to use SerializableTokenCache from - # https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache + # https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache ) # The pattern to acquire a token looks like this. diff --git a/sample/device_flow_sample.py b/sample/device_flow_sample.py index 51667ce7..48f8e7f4 100644 --- a/sample/device_flow_sample.py +++ b/sample/device_flow_sample.py @@ -36,7 +36,7 @@ config["client_id"], authority=config["authority"], # token_cache=... # Default cache is in memory only. # You can learn how to use SerializableTokenCache from - # https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache + # https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache ) # The pattern to acquire a token looks like this. diff --git a/sample/interactive_sample.py b/sample/interactive_sample.py index 2e5b1cf6..6aafd160 100644 --- a/sample/interactive_sample.py +++ b/sample/interactive_sample.py @@ -32,7 +32,7 @@ config["client_id"], authority=config["authority"], # token_cache=... # Default cache is in memory only. # You can learn how to use SerializableTokenCache from - # https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache + # https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache ) # The pattern to acquire a token looks like this. diff --git a/sample/migrate_rt.py b/sample/migrate_rt.py index eb623733..ed0011ed 100644 --- a/sample/migrate_rt.py +++ b/sample/migrate_rt.py @@ -50,7 +50,7 @@ def get_preexisting_rt_and_their_scopes_from_elsewhere(): config["client_id"], authority=config["authority"], # token_cache=... # Default cache is in memory only. # You can learn how to use SerializableTokenCache from - # https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache + # https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache ) # We choose a migration strategy of migrating all RTs in one loop diff --git a/sample/username_password_sample.py b/sample/username_password_sample.py index 9c9b3c06..bcc8b7d5 100644 --- a/sample/username_password_sample.py +++ b/sample/username_password_sample.py @@ -38,7 +38,7 @@ config["client_id"], authority=config["authority"], # token_cache=... # Default cache is in memory only. # You can learn how to use SerializableTokenCache from - # https://msal-python.rtfd.io/en/latest/#msal.SerializableTokenCache + # https://msal-python.readthedocs.io/en/latest/#msal.SerializableTokenCache ) # The pattern to acquire a token looks like this.