You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I'm using my authorityUrl in this format
https://{tenant}.b2clogin.com/{tenant}.onmicrosoft.com/{policy}
I'm getting the error on policyTriggerInteractive callback
"MSALErrorDescriptionKey" : "Authority validation is not supported for this type of authority"
"MSALInternalErrorCodeKey" : Int64(-42008)
which stackoverflow say knowAuthorities should be properly set
so when I changed to it (with some other tweaking to the plugin code to support new url format) I'm getting other error
[0] (null) "MSALErrorDescriptionKey" : "forbidden"
[1] (null) "MSALHTTPResponseCodeKey" : "403"
[3] (null) "MSALInternalErrorCodeKey" : Int64(-42007)
I don't know which format is required and which direction should I go
I'd really appreciate any feedback.
The text was updated successfully, but these errors were encountered:
good day,
when I'm using my authorityUrl in this format
https://{tenant}.b2clogin.com/{tenant}.onmicrosoft.com/{policy}
I'm getting the error on policyTriggerInteractive callback
"MSALErrorDescriptionKey" : "Authority validation is not supported for this type of authority"
"MSALInternalErrorCodeKey" : Int64(-42008)
which stackoverflow say knowAuthorities should be properly set
But then I found that Microsoft guidelines says authority for iOS devices should be defined in this format
https://login.microsoftonline.com/tfp/{tenant}.onmicrosoft.com/{policy}
so when I changed to it (with some other tweaking to the plugin code to support new url format) I'm getting other error
[0] (null) "MSALErrorDescriptionKey" : "forbidden"
[1] (null) "MSALHTTPResponseCodeKey" : "403"
[3] (null) "MSALInternalErrorCodeKey" : Int64(-42007)
I don't know which format is required and which direction should I go
I'd really appreciate any feedback.
The text was updated successfully, but these errors were encountered: