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...

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...

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...

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...

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...

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...

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...

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...

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

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...

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,...

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...

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...

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...

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) ...

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...

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...

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...

14 Nov at 02:2