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

AuthorizeAttribute for Actions

TL;DR: How does an MVC app know to redirect to a certain action after going through authentication process when IdentityServer3 does a form post to the return url which is always the root url? The examples in this question are taken from the…
5
votes
2 answers

How to use ThinkTecture IdentityServer 3 in Web Api 2

I have been reading a lot about how to implement a full authentication and authorization system in Asp.Net Web Api 2 which includes registering, sending email confirmations, issuing both access tokens and refresh tokens, etc. I have successfully…
5
votes
1 answer

Identity Server 3 login via Javascript without redirect

Thinktecture Identity server has a good sample of logging in via the JavaScript client at https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/Clients/JavaScriptImplicitClient However, this particular example redirects the…
Aquaboltar
  • 251
  • 1
  • 4
  • 10
5
votes
1 answer

How to secure IdentityManager with IdentityServer v3

Brock Allen released the new beta version of IdentityManager last week. There are quite some changes in the security model, so the configuration also changed. He even took some videos (Setting up ASP.NET Identity and Security and IdentityManager) on…
5
votes
1 answer

IdentityServer gets into infinite loop of authentication

I have the following client set up in IdentityServer: new Client { ClientName = "My web application", Enabled = true, ClientId = "mywebapp", ClientSecrets = new List { new ClientSecret("somesecret") }, …
orad
  • 15,272
  • 23
  • 77
  • 113
5
votes
1 answer

Thinktecture IdentityServer v3 with WebForms and WebApi

I am trying for a while to figure out how to solve SSO (Single Sign On) with Thinktecture IdentityServer v3 for a legacy webforms application. Unfortunately I am stacked. The infrastructure is like this: A WebForm App which need authentication and…
5
votes
0 answers

adding reference to thinktecture.identityserver.3 causes This type has no accessible object constructors error in existing code

I'm attempting to host an openid connect identity server in a F# wep api project, I'm using the F# MVC templates and the pre-release package of identity server When I create either of the Katana based web api projects and subsequently add the…
Richard
  • 1,804
  • 16
  • 22
5
votes
1 answer

How do I setup Thinktecture Identity server v3 beta 1-2 with ASP.NET Identity?

I have looked at all the docs for Thinktecture Identity server v3 and have not been able to figure out how to get started using ASP.NET identity. Can someone please explain at a high level step by step from step 1 (i.e. cloning the git repo) to it's…
5
votes
1 answer

Moving from Web API 2 Claim-Based-Authentication to ThinkTecture

I am finding that Microsoft's implementation of Claim-Based Authentication is not really up to the expectation of the true Claim-Based setup, and I seems like ThinkTecture is doing a good job of replacing Web API implementation. I am wondering if…
5
votes
1 answer

Single Sign On With thinktecture IdentityServer v2

I'm running thinktecture IdentityServer v2 with two Relying Parties in my qa environment on Windows Server 2008 R2 Standard. IdentityServer is configured for two RPs, one using Federation the other with oAuth My first relying party…
5
votes
3 answers

Is there a way to customize the Thinktecture.IdentityServer.v2 login page?

I'm using the Thinktecture.IdentityServer.v2 app to perform SSO for a couple of internal apps but would like to customize the login page for each application to have a smoother user experience. I can't seem to find a way to do that. Can the login…
4
votes
1 answer

Bearer was not authenticated: Signature validation failed

I am using Identity Server 4 to protect my APIs (Implicit Flow Mode) which are accessed by angular application. Every thing is working fine, however at specific period the access token suddenly became invalid even before its…
4
votes
2 answers

Validating Against credentials Custom Users DB - IResourceOwnerPasswordValidator

I am using Identity Server 4 and implemented the following two interfaces: IResourceOwnerPasswordValidator: for the purpose of validating user credentials against my custom DB public class ResourceOwnerPasswordValidator :…
Hussein Salman
  • 7,806
  • 15
  • 60
  • 98
4
votes
1 answer

Configuring ASP.Net Core to authenticate using OIDC against Thinktecture V2

I'm trying to get an ASP.Net Core to authenticate against Thinktecture V2 uising OpenID Connect (we currently need WS-Trust so can't upgrade). My configuration is as follows app.UseCookieAuthentication(new CookieAuthenticationOptions()); …
4
votes
2 answers

Unable to use IdentityManager API from Postman

I am using postman and I am trying to get the users list from identity Manager. But I am unable to configure the app correctly. I try to get the users from https://localhost/idm/api/users I get the token with the API+idmgr+openid scopes and I have…
Alegrowin
  • 321
  • 1
  • 14
1 2
3
22 23