Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "rajalla"

hello?

Hello Omkar,

Were you able to successfully implement this? We are considering this for one of our future projects and wondering if you ran into issues using Elastic pools. Any insight is appreciated.

Thanks, Raj.

Hi,

I am planning to integrate Elsa into our app as well. Were you able to do the integration?

Thanks, Raj.

This is what I had to do to make OpenID work for google.

  • Add "email" to request scope in authenticationBuilder.AddOpenIdConnect method. I passed it as an argument from the settings
options.Scope.Add("email");
  • Looking at the source code for SigninManager's GetExternalLoginInfoAsync method, I have identified that it is looking for a Claim by name "nameidentifier". This claim is being returned when using the Google Authentication directly. So added the below mapping. Not sure where the "unique_name" will be used *
{
      "claim": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier",
      "key": "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"
}

You just have to change the "RegisterForExternalLogin" method to add users automatically without the activation.

I hope we get the documention on this functionality soon.

Thanks, Raj.

Was able to fix it by setting Working directory under advanced options in Generate Migrations Script.

Answer

Any luck on this?

Nevermind I did not have the AccountController in WebAPI project

Thanks Halil for the quick response.

Is the url "http://localhost:6234/api/Account/Authenticate" enabled by default ? When I used it to test my applcation using Postman it gave an error "No HTTP resource was found that matches the request URI".

Showing 1 to 8 of 8 entries