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

ASP.NET Identity Manager Error: error when trying to create a controller of type 'MetaController' (no parameterless public constructor)

I got ThinkTecture's IdentityManager running, but now when going to the '/idm/ url I get an error: An error occurred when trying to create a controller of type 'MetaController'. Make sure that the controller has a parameterless public…
Bart
  • 5,065
  • 1
  • 35
  • 43
4
votes
1 answer

What is the difference between Shibboleth, WSO2 and Identity Server?

I need to implement an Identity Server for our org and have been trying to get my head around the various options available. Requirement are Single IdP, to which other IdPs can link and provide authentication/authorization. Eg, connect to ADFS of…
sppc42
  • 2,994
  • 2
  • 31
  • 49
4
votes
1 answer

Get bearer token from OWIN Cookie and put it on API Requests

Here is my scenario: I have a MVC4.5/WebApi2 application that uses OpenIdConnectAuthentication based on a Thinktecture.IdentityServer provider. So far I can authenticate against MVC. Now I want to authenticate to the WebApi using Bearer Token. Here…
4
votes
1 answer

Retaining Forms Authentication with IdentityServer3

We currently have a typical forms authentication setup in our organisation; with a login page located at something like account/login. We want to retain this but also want to start securing some of our APIs with OAUTH2 ; essentially we are the…
4
votes
0 answers

thinktecture identity server auto login

In project I'm working on we use IdentityServer which is identity server for lots of clients (mostly websites) I have such problem: 1. User creates account using registration page that's within website X. 2. After registration verification email is…
michal
  • 41
  • 2
4
votes
1 answer

Getting FacebookAuthenticationProvider instance in IdentityServer (Owin app)

I'm in the middle of an implementation of Thinktecture IdentityServer and am adding the capacity for mobile apps to provide natively obtained Facebook access tokens to the server, which will respond by locally authenticating the user. IdentityServer…
4
votes
1 answer

Changing the embedded self-signed X.509 Certificate (idsrv3test.pfx) in IdentityServer.v3

I'm done configuring IdentityServer.v3 with IdentityManager and everything is working pretty much how I want. The only thing left is changing the X.509 certificate to a custom self-signed one. I am using the code here to load my embedded…
4
votes
1 answer

Federated Identity Token duplicating characters for closing tags (cookies) (using Thinktecture Identity Server)

Running into a strange problem with the cookies that are being set. For the most part, everything works as expected, but sometimes I get the error System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64…
garethb
  • 3,951
  • 6
  • 32
  • 52
4
votes
2 answers

Secure 2 different web applications with one identify service

Secure 2 different web applications with one identify service Identity Service: Thinktecture Identity Service V2 Application 1: Asp.net MVC 5 application Application 2: Asp.net Web API application The above Applcation 1 and Application 2 are…
4
votes
0 answers

Multiple STS authentication servers using Thinktecture

I am going to preface this by saying I am a novice in this field. Our system has a large number of users, some of whom, log in using SAML authentication, others use the forms authentication on the home page, and some use a custom built Single Sign…
Suraj
  • 271
  • 1
  • 10
4
votes
1 answer

Single Sign Out with Thinktecture Identity Server 2

My understanding with regard to Thinktecture's Identity Server 2 is that Single Sign Out is not implemented. In other words, when you sign out of one Relying Party, Identity Server does not sign the user out of any other RPs automatically. I know…
TrevorBrooks
  • 3,590
  • 3
  • 31
  • 53
4
votes
2 answers

AJAX call against REST endpoint secured with Thinktecture's IdentityServer STS

I'm having some dramas making a call against a ServiceStack REST service which I've secured with an out of the box IdentityServer STS. I'm making an AJAX call against the REST endpoint, and I'm not sure how one might setup a logon procedure to get a…
Clint
  • 1,159
  • 1
  • 10
  • 19
3
votes
1 answer

IdentityServer4 Multiple Claims Generation (Specific Scenario)

I am implementing IdentityServer4 for client. Here i am bit confused in generating and setting claims, in ProfileService . Scenario: 1) Users can belongs to multiple companies. 2) Users can have one role in one company. 3) User can have different…
3
votes
1 answer

SSO using Identity Server with SAML 2 with other Identity Providers

I implemented authentication and authorization using Identity server 4 with OIDC to allow clients accessing our application to get the necessary tokens to access our resource server (web APIs). This is the current architecture : Identity Server 4…
3
votes
1 answer

How to use InboundClaimTypeMap for claim mapping?

I have similar problem as here : https://github.com/IdentityServer/IdentityServer3.Samples/issues/9 But solution is not helpful for me. So lets explain in more details with pictures and code: I have this on client: No need to map because…
Raskolnikov
  • 3,791
  • 9
  • 43
  • 88