-
Notifications
You must be signed in to change notification settings - Fork 347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add b2c authority host to list #1017
Conversation
7771727
to
8dbd0c9
Compare
8dbd0c9
to
0b74398
Compare
/// <summary> | ||
/// No Redirect URI. | ||
/// </summary> | ||
public const string B2CHostNotTrusted = "B2C_host_not_trusted"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
B2CHostNotTrusted [](start = 28, length = 17)
Probably a different PR... but I believe JM wanted these to be on the exceptions (in this case that would be on the clientexception), #Resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -66,7 +66,7 @@ internal static class MsalTestConstants | |||
public const string AuthorityWindowsNet = "https://" + ProductionPrefCacheEnvironment + "/" + Utid + "/"; | |||
public const string B2CAuthority = "https://login.microsoftonline.in/tfp/tenant/policy/"; | |||
public const string B2CLoginAuthority = "https://sometenantid.b2clogin.com/tfp/sometenantid/policy/"; | |||
public const string B2CRandomHost = "https://sometenantid.randomhost.com/tfp/sometenantid/policy/"; | |||
public const string B2CCustomDomain = "https://catsareamazing.com/tfp/catsareamazing/policy/"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
catsareamazing [](start = 55, length = 14)
:) #ByDesign
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@henrik-me build passed here |
return Task.FromResult(defaultEndpoint); | ||
} | ||
|
||
throw MsalExceptionFactory.GetClientException( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a test called B2CMicrosoftOnlineCreateAuthority that now consistently fails because of this. What suprises me is that it passed on the PR build or it was not run. Investigating...
@henrik-me have a few questions for you.