Hello,
I'm still not getting the name and email from Sign in Flow.
My application is implemented in .Net Core 3.1 using the OpenIdConnect.
I've specified the scopes as following but when getting the code and idtoken, not user data is added.
.AddOpenIdConnect("Apple", async options =>
{
options.Scope.Clear();
options.Scope.Add("name");
options.Scope.Add("email");
...
}
..
options.Events.OnAuthorizationCodeReceived = async context =>
{
// no user object within the idtoken
}
The authentication cookie is generated but can't proceed with new account creation.
I'm also using the ExternalLogin structure OnGetCallbackAsync.
The url seems to have all required info as explained in this ticket.
Is someone facing same issue? Thanks