Invalid_client using OpenIdConnect in client application

前端 未结 2 810
旧时难觅i
旧时难觅i 2021-01-18 05:00

I have an IdentityServer4 application running with ASP.NET Identity. I want to use that so users from another application can login through my remote identity server.

<
2条回答
  •  别那么骄傲
    2021-01-18 05:32

    ClientSecret should contain the unencrypted value. Take a look at the documentation.

    In your case secret.

    options.ClientSecret = "secret";
    

    I didn't look further, so if this change doesn't solve it then please let me know.

提交回复
热议问题