stuartbfs
stuartbfs
Hi, The plugin hasn't been updated to support .NetCore 2.0 Can you please give more details on the logout functionality?
Yes, we are looking into doing this
Looks like you might be using a different version of Service Stack if the method is missing
The plugin was built with version 4.0.56 so version 5 likely isn't supported.
As a guess, you might need to set the tls version using ServicePointManager depending on the certificate being used. e.g. System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
Is your Service Stack application is using HTTP and your Identity Server instance is HTTPS? If so the browser will give you a warning.
It’s probably failing to authenticate on the Service Stack. You’ll need to confirm the callback url is configured correctly in identity server.
Is the nonce in the response received from IdentityServer4?
Calling the endpoint directly isn’t a valid scenario as identity server requires an endpoint to return to.
Identity server implements openid connect so isn't necessarily going to have the same workflow as the other oauth providers. Can I check why you would want to authenticate a client...