Reputation: 3832
This may be related to my other question here however because of that it is hard to know.
I am hosting IdentityServer4 and it seems to be working perfectly if all requests are coming from localhost. Anything else it is rejecting however I can log in fine through the web interface.
I am still in development and I am just testing things however I am using
AddDeveloperSigningCredential()
Is this the problem?
Upvotes: 0
Views: 110
Reputation: 162
Yes it is good till you are in development. Below is the reference from IdentityServer4
Creates temporary key material at startup time. This is for dev only scenarios when you don’t have a certificate to use.
Upvotes: 2