-
Notifications
You must be signed in to change notification settings - Fork 30
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
Adding kiota msal-browser auth library #233
base: main
Are you sure you want to change the base?
Conversation
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 for starting this!
throw error; | ||
} | ||
return response.accessToken; | ||
} catch (error) { |
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.
this exception name masks the error variable your have above. Rename this or downscope the other one
const account = | ||
this.msalBrowserAuthenticationConfig && | ||
this.msalBrowserAuthenticationConfig.account; | ||
const error = new Error(); |
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.
I'd argue for duplication and instantiating it only if needed. Hopefully the vast majority of executions do not throw an error.
} from "@azure/msal-browser"; | ||
|
||
export interface MSALBrowserAuthenticationConfig { | ||
publicClientApplication: PublicClientApplication; |
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.
doc comments?
This pull request has conflicting changes, the author must resolve the conflicts before this pull request can be merged. |
fixes #186