tagged [servicestack-auth]
ServiceStack Twitter Auth and Registration
ServiceStack Twitter Auth and Registration I've got an app that has been running using CredentialsAuthProvider() for a while. Today, I'd like to add twitter and facebook as options for people to creat...
- Modified
- 2 Apr at 19:29
ServiceStack and Auth0
ServiceStack and Auth0 I am looking to use Auth0 as the authentication provider for ServiceStack. There is a great sample application documented at Auth0 which applies & works well when working with S...
- Modified
- 26 Mar at 14:54
Twitter Authentication in ServiceStack
Twitter Authentication in ServiceStack I added twitter Authentication in my ServiceStack Service. My Authentication as well as Service is working fine and i am getting redirected to my Service Page fr...
- Modified
- 16 Sep at 12:36
How do I use my custom ServiceStack authentication provider with Redis?
How do I use my custom ServiceStack authentication provider with Redis? I have implemented a custom `CredentialsAuthProvider` for my authentication and used it with the default in memory session stora...
- Modified
- 14 Jan at 22:28
How to implement Auth0 authentication in ServiceStack?
How to implement Auth0 authentication in ServiceStack? My setup consist of 3 components: Auth0, where I add users and manage their permissions. My front-end SPA web page, which serves as a shell for m...
- Modified
- 7 Jun at 15:10
ServiceStack: Several logins from different devices (phone, web etc) - I want one session per device
ServiceStack: Several logins from different devices (phone, web etc) - I want one session per device The problem: it seems to me, like the normal and best way to look at sessions is: . So, you can hav...
- Modified
- 16 Aug at 23:32
ServiceStack Custom Credentials Auth with DB Stored Api Keys
ServiceStack Custom Credentials Auth with DB Stored Api Keys Right now, we're authenticating our users with this: ``` public class WindowsAuthProvider : CredentialsAuthProvider { public override boo...
- Modified
- 11 Aug at 14:32
getting the userId back in CustomUserAuthRepository.CreateUserAuth
getting the userId back in CustomUserAuthRepository.CreateUserAuth Being a very basic user of ServiceStack, I tried to give it a go, but several things I can't seem to understand correctly... I'm usin...
- Modified
- 18 Aug at 20:50
Servicestack NHibernate Auth Repo No CurrentSessionContext configured
Servicestack NHibernate Auth Repo No CurrentSessionContext configured I have the following configuration: And then elsewhere I have: ``` var authRepo = new NHibernateUserAuthRepository (_container.R
- Modified
- 9 Dec at 16:32
Error trying to resolve Service 'System.Boolean' from Adapter 'NetCoreContainerAdapter'
Error trying to resolve Service 'System.Boolean' from Adapter 'NetCoreContainerAdapter' After recently converting to .NET Core I get the following error when trying to authenticate with any of our Aut...
- Modified
- 24 Nov at 13:4
Why does UserAuthExtensions.PopulateFromMap(session, jwtPayload) does not deserialize json values with escape correctly in ServiceStack.Auth?
Why does UserAuthExtensions.PopulateFromMap(session, jwtPayload) does not deserialize json values with escape correctly in ServiceStack.Auth? We want to get the UserName from the ServiceStack session,...
- Modified
- 5 Nov at 08:21
ArgumentNullException with custom auth provider in ServiceStack
ArgumentNullException with custom auth provider in ServiceStack I've made a custom auth provider for LDAP (Active Directory) based on the CredentialsAuthProvider. Following the docs I've overridden Tr...
- Modified
- 20 Mar at 16:56
How to authorise React/TypeScript application with ServiceStack and AAD
How to authorise React/TypeScript application with ServiceStack and AAD We're having some trouble authorising our frontend React/Typescript application with our Azure Active Directory/ServiceStack bac...
- Modified
- 10 May at 10:27
ServiceStack Authenticates both iOS Apps when one is logged in
ServiceStack Authenticates both iOS Apps when one is logged in I'm using the awesome ServiceStack to implement my REST backend which serves two iPhone apps written in Xamarin. Everything works great b...
- Modified
- 21 Jun at 23:10
Servicestack cross site Auth conundrum
Servicestack cross site Auth conundrum I have an MVC website (single page JS app type thing) which can have the SS NuGets installed if needed. I have an API which is currently (and very successfully) ...
- Modified
- 12 Mar at 14:33
ServiceStack ServiceClient stores wrong cookies after authentication
ServiceStack ServiceClient stores wrong cookies after authentication i have a strange problem with Servicestack Authentication. I've developed an Asp .Net Core web app (.net core 3.1) in which is impl...
- Modified
- 17 Apr at 10:30
ServiceStack: Custom login method and create manual IAuthSession for use with [Authenticate] attribute?
ServiceStack: Custom login method and create manual IAuthSession for use with [Authenticate] attribute? I'm trying to manually create an IAuthSession and saving it, so I can use the attribute [Authent...
- Modified
- 7 Dec at 15:19
Auth Service Saying Not Authenticated when using Permanent Sessions
Auth Service Saying Not Authenticated when using Permanent Sessions When using temporary sessions it works fine. Log into the auth service and calling /auth without any parameters and it shows the dis...
- Modified
- 14 Nov at 02:2