tagged [authentication]

ServiceStack OAuth Redirect URL

ServiceStack OAuth Redirect URL The ServiceStack `AuthService` enters an infinite loop after authenticating with an OAuth provider because of this line in `OAuthProvider.cs`: I can override the `Refer...

how to get login option for phpmyadmin in xampp

how to get login option for phpmyadmin in xampp when i open localhost/phpmyadmin/ in xampp it opens directly the home page with root as user but not a login page. My page looks same as in [here in thi...

20 Jul at 07:17

Remove authentication in ASP.net MVC single page application

Remove authentication in ASP.net MVC single page application I am trying to play about with the asp.net MVC SPA template in visual studio 2013, I don't need any of the authentication bits, I just need...

ServiceStack Authentication Error Codes

ServiceStack Authentication Error Codes Before i've always catch up every authentication xhr request rejection globally. The status codes was the following: Using the `CredentialsAuthProvider` i get a...

24 Jun at 07:59

Is there any way to get Firebase Auth User UID?

Is there any way to get Firebase Auth User UID? I am looking to fetch Auth User(s) UID from Firebase via NodeJS or Javascript API. I have attached screenshot for it so that you will have idea what I a...

ServiceStack, Authenticate attribute

ServiceStack, Authenticate attribute I am trying to write my own authentication, so I inherited `CredentialsAuthProvider` and have overridden the Authenticate method. Auth is working fine, also when i...

App pool identity versus impersonation identity?

App pool identity versus impersonation identity? I found only one thread relating to this but it did not answer the question. I'm curious to a link or explanation of the difference between setting an ...

Why do I get com.google.android.gms.common.api.ApiException: 10:?

Why do I get com.google.android.gms.common.api.ApiException: 10:? ``` private void handleSignInResult(Task completedTask) { try { GoogleSignInAccount account = completedTask.getResult(ApiExcepti...

9 Mar at 17:39

Extend User Authentication in ServiceStack Mvc

Extend User Authentication in ServiceStack Mvc I need graded authentication. (Only email is enough for authentication- no username,no password- This is so common for e-commerce site). - - What is your...

How to access ServiceStack authentication failure on QueryString

How to access ServiceStack authentication failure on QueryString I've implemented Credentials Authentication using a POST form. If I enter wrong credentials I get redirected to: [http://localhost:5440...

23 Nov at 23:2

How to use Identity Server 3 for Servicestack service Authentication?

How to use Identity Server 3 for Servicestack service Authentication? I am using Service stack version `3.9.71` for service creation. Now we have requirement to authentication this service. how we can...

SVN change username

SVN change username I found a lot of examples on how to change the username for specific revisions and so on. But what I need is this: I did a checkout with the authentication credentials of a workmat...

17 Feb at 23:13

How to delete user accounts in asp.net?

How to delete user accounts in asp.net? I have a Register page, I used the following [Walkthrough: Creating a Web Site with Membership and User Login](http://msdn.microsoft.com/en-us/library/879kf95c....

C# example of downloading GitHub private repo programmatically

C# example of downloading GitHub private repo programmatically I see that the download path for a GitHub repo is of the form For a private repo, understandably you need to provide credentials in order...

14 Mar at 11:32

Android: Storing username and password?

Android: Storing username and password? If I want to store the username and password to be used inside an Android application, what is the best way to do it? Is it through the preferences screen (but ...

Programmatically logout an ASP.NET user

Programmatically logout an ASP.NET user My app allows an admin to suspend/unsuspend user accounts. I do this with the following code: The above works fine to suspend the user, but it does not revoke t...

26 Apr at 17:17

ServiceStack UpdateUserAuth RegistrationService

ServiceStack UpdateUserAuth RegistrationService I'm implementing my own IAuthRepository, but I can't figure out how UpdateUserAuth should be. the signature in IUserAuthRepository is: in ServiceStack c...

How to enable basic authentication without user sessions with ServiceStack?

How to enable basic authentication without user sessions with ServiceStack? According ServiceStack github [wiki](https://github.com/ServiceStack/ServiceStack/wiki/Authentication-and-authorization) In ...

10 Aug at 11:54

does the user login restriction based on IP address support ipv6 for web application?

does the user login restriction based on IP address support ipv6 for web application? Does any one know how to restrict the user to login based on an IPV6 address for a web application in c# dot net? ...

What to use Windows CardSpace for?

What to use Windows CardSpace for? I'm doing some funky authentication work (and yes, I know, open-id is awesome, but then again my open-id doesn't work right at this moment!). Stumbling across Window...

21 May at 10:6

How can I check if a user is logged-in in php?

How can I check if a user is logged-in in php? I'm pretty new to PHP and I am trying to figure out how to use sessions to check and see if a user is logged into a website so that they would have autho...

The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM'

The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'NTLM' Few days ago I had quite a headache with authentication pr...

31 Oct at 07:10

UserAuth type in ServiceStack

UserAuth type in ServiceStack I don't understand: Why the field "UserAuthId" in the Table "ApiKey" is of type and, in the other tables, is of type . I'd like to create a relation between UserAut table...

16 Sep at 07:47

AuthenticateRequest event

AuthenticateRequest event Q 1. To my understanding `FormsAuthenticationModule` is subscribed to `AuthenticateRequest` event, and thus only after this event is fired, is `FormsAuthenticationModule` cal...

How to edit the DataTypes of properties in UserAuth

How to edit the DataTypes of properties in UserAuth I am new to ServiceStack, The extensiblity of this framework just blow my mind. but it didnt seems to me any example to extend the data type of User...