-
Notifications
You must be signed in to change notification settings - Fork 10.3k
MicrosoftAccount to take parameters #11026
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
Comments
Because that feature was added to the Google provider by an external contributor. Note you can do this with the OpenIdConnect handler. |
I haven't looked into the OpenIdConnect handler, but is it the same/an upgraded version of the MSAccount one? |
Yes, it's a bigger, more powerful, more generic, OAuth/OIDC handler. |
OK, I'll give it a try. Perhaps this MSAccount one should inherit that then
so it can take advantage of all it's features.
…On Tue, 11 Jun 2019 at 09:19, Chris Ross ***@***.***> wrote:
Yes, it's a bigger, more powerful, more generic, OAuth/OIDC handler.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#11026>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABEKWH6PGNVMJUWUDJMPCZDPZ3VSNANCNFSM4HWQG4CA>
.
|
That wouldn't be a bad approach at all :) |
It wouldn't be a derivation, it would be a replacement. We've considered obsoleting the OAuth providers that also have OIDC support like Google and MSA. We hadn't decided if we'd need a replacement or just a doc/sample using raw OIDC. |
Obsoleting the google and MS one's just means causing extra work for devs |
Is your feature request related to a problem? Please describe.
I am trying to using MicrosoftAccount authentication but I need to force the user to select their account using the
prompt=select_account
parameters.Describe the solution you'd like
When issuing a
Challenge
from the server, allow parameters to be added:properties.Parameters.Add("prompt", "select_account");
This works with the google provider, it should also work with the Microsoft provider.
Describe alternatives you've considered
Additional context
I'm pretty confused why the Google provider is more comprehensive than the Microsoft one, Considering dot net is made by Microsoft...
The text was updated successfully, but these errors were encountered: