-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 adfs support in Identity SDK. #11591
Conversation
@@ -143,8 +143,9 @@ export class IdentityClient extends ServiceClient implements INetworkModule { | |||
} | |||
|
|||
try { | |||
const urlSuffix = tenantId === "adfs" ? "oauth2/token" : "oauth2/v2.0/token"; |
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.
We should definitely pull this out into a helper method now so that we don't have to maintain it in 4 different places.
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.
moved it as a helper under util
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.
Thanks! Looks great
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.
Looking good so far!
Looks good, but address @daviwil's feedback please 🙏 ✨ |
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.
Could you file a tracking bug to add manual / live e2e tests for this new JS scenario?
s360 fixes for Azure DNS (Azure#11591) * s360 fixes for Azure DNS * Additional property * Property fix * Readonly property * CloudError fix * Examples. cloud error * Avocado fix * read.md * Prettier
s360 fixes for Azure DNS (Azure#11591) * s360 fixes for Azure DNS * Additional property * Property fix * Readonly property * CloudError fix * Examples. cloud error * Avocado fix * read.md * Prettier
Adds support for ADFS authorities to connect to correct endpoint and bypass validation on MSAL for MSAL supported credentials.
Fixes #11323 #10226