We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e04519 + c73b7ca commit 8ff855eCopy full SHA for 8ff855e
msal/broker.py
@@ -169,8 +169,9 @@ def _signin_interactively(
169
**kwargs):
170
params = pymsalruntime.MSALRuntimeAuthParameters(client_id, authority)
171
params.set_requested_scopes(scopes)
172
- params.set_redirect_uri("placeholder") # pymsalruntime 0.1 requires non-empty str,
173
- # the actual redirect_uri will be overridden by a value hardcoded by the broker
+ params.set_redirect_uri("https://login.microsoftonline.com/common/oauth2/nativeclient")
+ # This default redirect_uri value is not currently used by the broker
174
+ # but it is required by the MSAL.cpp to be set to a non-empty valid URI.
175
if prompt:
176
if prompt == "select_account":
177
if login_hint:
0 commit comments