Questions tagged [thinktecture-ident-server]

Thinktecture IdentityServer is an open source security token service based on Microsoft technologies designed around Claims Based Authentication and Windows Identity Foundation.

Thinktecture IdentityServer is an open source security token service based on Microsoft technologies designed around Claims Based Authentication and Windows Identity Foundation.

Version 2: https://github.com/IdentityServer/IdentityServer2/

Version 3: https://github.com/IdentityServer/IdentityServer3/

337 questions
0
votes
1 answer

Passing parameter SecurityToken to a different asp.net mvc website in a POST doesn't work to allow Single Sing-On

I have couple of websites A, B, C ..... Website A: is an authentication website, depending on the user name, password and an extra parameter; Website A redirect a successful user login to Website B. When the user is logged I get in the Website A a…
0
votes
1 answer

Thinktecture IdentityServer V3 - Data is not binding and resources are not loading

I've recently created an Web API that I'd like secured by Thinktecture's IdentityServer V3. I imported the package from nuget, and was able to hit the token endpoints to create a token. However, I noticed that the bootstrap css would not load on…
0
votes
1 answer

IdentityServer V3 does not accept login

We are trying to build OAuth2 Authorization with IdentityServer3. So we downloaded the Bytes from nuget and connected it with our database. The database was initialized with the default scopes and the sample clients from Thinktecture self. Then we…
TGlatzer
  • 5,815
  • 2
  • 25
  • 46
0
votes
2 answers

Add Claims after authentication using Thinktecture Identity Server

I am using Thinktecture Identity Server V3 for SSO and configured my client application with Implicit flow. Once the user is authenticated with local login I would like to add addition claims to the principle with in the client application. What is…
user3731783
  • 718
  • 1
  • 7
  • 31
0
votes
1 answer

Managing ClaimsPrincipal.Current in Forms Authentication MVC app

We use the excellent Thinktecture IdentityServer v2 to manage our authentication. This works with an underlying SqlMembershipProvider architecture. I'd like to manage an ASP.NET MVC4 web application connection with the informations (claims) returned…
0
votes
1 answer

Presenting an OAuth2 token endpoint with ADFS as identity provider

I want to set up an identity server to centralize the authentication for multiple backend APIs (ASP.NET Web API mostly) and multiple clients (Web SPA, Xamarin Mobile and WPF PC-client). I preferably want to present the clients with a single OAuth2…
0
votes
1 answer

Thinktecture Identityserver and Cordova app - Which flow should I use?

We currently have identityserver v2 (and ws-fed for our websites), and now we would like to authenticate with a phonegap app. How could this be implemented? I understand ws-fed is not an option, so for oauth our options are (I might be wrong…
Larsi
  • 4,654
  • 7
  • 46
  • 75
0
votes
1 answer

thinktecture identity server 3 authentication works correctly in iis express, but keeps on throwing 401 unatuhorized when hosted in iis

Ok so i tried hosting the simplest oauth sample and the identity server both on iis, i have enable cors on the simplest oauth sample. So when i test the api using the javascript implicit client, on iis express it works flawlessly, it gets the token…
yon86
  • 63
  • 6
0
votes
0 answers

How to use the concept of corporate account in MembershipReboot

I'm studying MembershipReboot for a professional corporate solutions. The background is: There are companies A company has one or more users administrators / owners User administrator adds users with role administrator, worker In the multitenant…
0
votes
1 answer

SessionSecurityTokenReceived called too many times

I have a Web Forms application which makes use of WIF and Claims based authorization. Im using Thinktecture IdentityServer v2.5 for my STS with my custom login page and custom authentication against database and then issuing the token. Its all…
0
votes
1 answer

OpenId auth with AngularJS and MVC, with token cookie

I'm more looking for comfirmation of whether I'm doing this right or wrong. This is the scenario: I'm hosting an AngularJS app in an ASP.NET MVC application. Using the MVC part I communicate with IdentityServer to log in, and once I do this I take…
0
votes
1 answer

WIF session token set through SessionAuthenticationModule lifetime

Please help me to understand the concept of expiry time for sessiontoken. Below is the way I am setting the session token after receiving the token from STS. var principal = validationfunction();//returns claimsprincipal if (principal…
user1213831
  • 309
  • 7
  • 22
0
votes
1 answer

thinktecture identity server v3 managing users in Asp.Net Identity v2

I want to use Identity Server v3 as a central authentication point for several internal web apps and I want to use Asp.Net Identity 2 as my repo for users and associated claims. I already have the two wired up together and I can see the Asp.Net…
Scott Glover
  • 25
  • 1
  • 6
0
votes
1 answer

Sign out from multiple applications

I'm working on an OpenID Connect implementation, that is going to work as a single sign-on for multiple applications. I get how to sign out a user from a single application or simply revoke refresh tokens for further renewal of access tokens. But…
Gusten
  • 882
  • 1
  • 7
  • 14
0
votes
2 answers

How to integration between Thinktecture Identity Sever v3 and Authorization Server?

I am setting up Thinktecture Identity Server version 3 (beta3), and it worked well. However I want to build a Role base security access control system to interact with Identity server to complete authorization. So, I found Thinktecuture…