-
Notifications
You must be signed in to change notification settings - Fork 345
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
[Feature Request] [L] MSAL.NET supports Prompt.Create so that customers can implement self-service sign-up #2463
Comments
@bgavrilMS this is something we committed to for Q3. I'd suggest we take it for next sprint / the release after next cc: @henrik-me |
Not applicable to WAM |
@jmprieur - this prompt works for the application you provided in the example, but not for others. This will be confusing to people. Is there a config in the app registration that must be performed? |
@bgavrilMS |
We probably don't want to update the samples ...? |
@jmprieur @jennyf19 |
@pmaytak : I don't think so ... this is only for external identities ... |
Is your feature request related to a problem? Please describe.
When developers want to implement self-service sign up for their apps, they can use a
prompt=create
, triggered by a "Sign-up" link in their app. The end user can then enter the 'create account' experience.Describe the solution you'd like
MSAL.NET should propose a new property named
Create
in thePrompt
class. When using this property, MSAL.NET would send 'prompt=create' to the authorize endpoint, which will trigger the sign-up experience.Additional context
Example URL:
https://login.microsoftonline.com/d014fd44-d398-4813-a3a9-8cd725f7f356/oauth2/authorize?
client_id=da53de5a-636b-425f-ad57-0f62d6f974c7
&response_type=id_token
&resource=da53de5a-636b-425f-ad57-0f62d6f974c7
&scope=openid
&nonce=default_nonce
&redirect_uri=https://jwt.ms
&prompt=create
The draft OIDC spec for this is here: https://openid.net/specs/openid-connect-prompt-create-1_0.html
Work to do
Prompt
.Update after release
MS Docs PR Merge after release
Updated: Web Apps / Enabling sign-up experience
Out of scope for this work item:
The text was updated successfully, but these errors were encountered: