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
2
votes
0 answers

Implement sliding expiration on asp.net webapi2 + sts + angularjs application

We have WebAPI2, Thinktecture IdentityServer and AngularJS applications hosted on IIS. Our plan is to set up the webapi2 application stateless. Here is the flow: Users open our AngularJS application. If not logged in, they get redirected to the…
2
votes
1 answer

How can I validate an openId id_token in javascript

I am using identityserver v3 to authenticate my users in an angularjs based web application. therefor I request an id_token from the authorize endpoint that returns me what i want (id_token and access_token...). The openid specification states that…
2
votes
2 answers

ASP.NET MVC 5 - Multiple projects, Single authentication - SSO

Background Info: We've develop 3 standalone ASP.NET application that now are also being sold as a suite. A customer is able to order either 1, 2 or all applications. Being standalone applications, this brings a challenge to us and we're not entirely…
2
votes
1 answer

asp.net Identity Role claims in Thinktecture.IdentityServer.v3

I have a sample Auth server set up using Thinktecure.IdentityServer.v3 which also has the Thinktecture.IdentityManager plugged in. I am also using asp.net Identity and Entity Framework, so I have the associated plugins from Thinktecture wired up…
Matt Demler
  • 226
  • 1
  • 5
  • 19
2
votes
1 answer

MVC5 allow relying party to use JWT security tokens

I am using Thinktecture IdentityServer v2, the Relying Party token type is set to none. The code runs fine with this setting. I am looking to use JWT tokens so I have a common interface from my MVC app to the API, and also from phone/tab app clients…
2
votes
2 answers

Thinktecture Identity server v3 - Facebook Assertion Flow

Is there a possibility to configure OAuth2 AssertionFlow with Facebook in Thinktecture Identity Server v3? There was a post on leastprivilege.com about implementing AssertionFlow for Microsoft OAuth and AuthorizationServer but I need to integrate…
2
votes
1 answer

Thinktecture identity server 3 Single Sign Out

I hope some one point me towards right direction. I have setup Identity server 3 on IIS and 2 different MVC clients to this Identity server. I am little confused about SIngle Sign out. I was hoping to achieve single sign out. However when i login,…
Fahad Ali
  • 75
  • 1
  • 5
2
votes
1 answer

How to implement WS-Federation using Thinktecture.IdentityServer.v2 with Node.js?

I'm just hoping someone can point me in the right direction. We have Thinktecture.IdentityServer.v2 running and working beutifully with out ASP.Net apps. I'm now working on an app with node.js. No Microsoft code at all. Can someone give me some…
2
votes
1 answer

CryptographicException KeySet does not exists

I am using Thinktecture Identity server and running it in azure. The issue I am having is that sometimes when I read the Federation metadata XML file or while signing in I get this Keyset does not exists CryptoGraphic exception . Now i know these…
sp9
  • 755
  • 3
  • 11
  • 22
2
votes
0 answers

connection string dependancy injection identity server v3

I am using Thinktecture Identity Server V3 and having issues working out how to make the dependancy registration use different connection strings for 2 different repositories. See code…
2
votes
0 answers

Using two Thintecture Identity servers

Good day, I would just like to find out if I can achieve the following situation using the Thintecture Identity Server v2? I want to implement a situation where I have two Identity servers running in two different locations, One locally on our…
Zapnologica
  • 22,170
  • 44
  • 158
  • 253
2
votes
1 answer

How to specify a certificate as the credentials for a wsTrustChannel with Thinktecture IdentityServer

I would have thought that one could basically switch the client credentials from this: var clientCredentials = new ClientCredentials(); clientCredentials.UserName.UserName = "MyUserName" clientCredentials.UserName.Password = "MyPassword" to: var…
Clint
  • 1,159
  • 1
  • 10
  • 19
2
votes
0 answers

Multi-legged sign-out from Office 365 / Windows Azure Active Directory

I have scenario where we use Thinktecture Identity Server (IdSrv) as both an R-STS and a IP-STS, as well as a O365 / WAAD tentant as an additional IP-STS. The user choose which Identity Provider to use via the Home Realm Discovery functionality in…
larsw
  • 3,790
  • 2
  • 25
  • 37
2
votes
1 answer

How to decode SessionSecurityToken

Is it possible to decode a SessionSecurityToken? I've set up a site to work with ThinkTecture IdentityServer using MachineKeySessionSecurityTokenHandler, and everything works as expected. But now I need to pass the token to another service, but in…
2
votes
1 answer

WCF service and Thinktecture Identity server

im using the thinktecture identityserver Security Token Service im trying to set up a scenario where I have a client using a WCF service. I'm stuck at a point where I get next error: MessageSecurityException An unsecured or incorrectly secured fault…