servicestack-authentication-identityserver
servicestack-authentication-identityserver copied to clipboard
A plugin for ServiceStack and IdentityServer that provides OpenIDConnect / OAuth 2.0 Single Sign-On Authentication
I'm trying to integrate ServiceStack.Authentication.IdentityServer plugin with an Identity Server 4. I posted this question to [StackOverflow](https://stackoverflow.com/questions/55576024/servicestack-identity-server-plugin-keeps-redirecting-infinitely-after-authorize) and @mythz recommended that I should file it here. When calling the protected...
We are using 4.5.0 version of this library because our project is using ServiceStack 4.5.0. UserAuthProvider's AuthCodeClient is using IdentityModel 1.11.0 but our project has used IdenittyModel 3.9.0 elsewhere. This...
https://github.com/wwwlicious/servicestack-authentication-identityserver/blob/99714115cd98a501e38e298af20d35b4df3ecb02/src/ServiceStack.Authentication.IdentityServer/Providers/UserAuthProvider.cs#L204 I have an example running where if I change that code to GetRequestValue, it works, because my code is coming from the form data. I'm just not 100% sure...
When running the ServiceAuthProvider sample, the API throws an ArgumentNullException when a secure service request from the client tries to authenticate: `serviceClient.Post(new Authenticate { provider = IdentityServerAuthProvider.Name });` The null...
It's convenient to have pre-authentication occur at the same time a secured request is made, especially when using a client like Postman, else one has to a call to /auth/IdentityServer...
Identity Server sets the referrer policy to no-referrer which seems to cause the logic inside UserAuthProvider.AuthenticateAsync to fail. The IsCallbackRequest function seems to depend on the UrlReferrer and verifies that...
While working with #15 I discovered that it does not seem like this identity server integration has support for reference tokens? I would really love to have that "back-channel" communication...
When I try to access protected api method, I got redirected to `/auth/IdentityServer?redirect=path-to-my-api-method` with following exception: >[Authenticate: 2018-10-24 12:24:00 AM]: [REQUEST: {provider:IdentityServer}] System.MissingMethodException: Method not found: 'ServiceStack.Web.INameValueCollection ServiceStack.Web.IRequest.get_QueryString()'. at ServiceStack.Authentication.IdentityServer.Providers.UserAuthProvider.GetReferrerUrl(IServiceBase...
Hi, I am trying to use servicestack-authentication-identityserver in my .NetCore 2.0 project but facing issue. Also i noticed dependency with Servicestack.Mvc.Core 1.0.33. Also logout functionality did not work as expected...
Hi, This code GrantTypes.List(ActAsUserGrantValidator.GrantTypeName) is invalid. Is there any update from the sample?