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.
1 parent 0183369 commit 3c11490Copy full SHA for 3c11490
msal/wam.py
@@ -34,7 +34,9 @@ def _convert_error(error, client_id):
34
"MsalRuntime won't work unless this one more redirect_uri is registered to current app: "
35
"ms-appx-web://Microsoft.AAD.BrokerPlugin/{}".format(client_id))
36
return {
37
- "error": "broker_error",
+ "error": "broker_error", # Note: Broker implies your device needs to be compliant.
38
+ # You may use "dsregcmd /status" to check your device state
39
+ # https://docs.microsoft.com/en-us/azure/active-directory/devices/troubleshoot-device-dsregcmd
40
"error_description": "{}. Status: {}, Error code: {}, Tag: {}".format(
41
context,
42
error.get_status(), error.get_error_code(), error.get_tag()),
0 commit comments