-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Add docs for remaining security items #26827
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
Conversation
* Google / Facebook / Microsoft Account auth * Authorization, Authorization.Policy Contributes to #26397
public MicrosoftChallengeProperties(IDictionary<string, string> items, IDictionary<string, object> parameters) | ||
: base(items, parameters) | ||
{ } | ||
|
||
/// <summary> | ||
/// The "response_mode" parameter value being used for a challenge request. | ||
/// Gets or sets the value for the <c>response_mode</c> parameter used for a challenge request. The response mode specifies the method | ||
/// that should be used to send the resulting token back to the app. Can be one of the following: <c>query</c>, <c>fragment</c>, <c>form_post</c>. |
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.
Umm, I think I blindly add all the parameters from https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow#request-an-authorization-code
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.
@Tratcher should we document that configuring this property isn't recommended?
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.
Nobody's noticed since it was introduced in 3.0. We can obsolete it in 6.0.
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.
@Kahbazi would you like to file an issue and/or send a PR?
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.
src/Security/Authentication/MicrosoftAccount/src/MicrosoftChallengeProperties.cs
Outdated
Show resolved
Hide resolved
Co-authored-by: Chris Ross <[email protected]>
Contributes to #26397