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
1 answer

How to get claims from server on every request with reference token?

We're using reference tokens and need to have claims and other info available on every request. For example, I need to be able to use Authorize or ResourceAuthorize to make sure a user has a role to protect access to certain controllers. How can I…
Pugz
  • 939
  • 3
  • 11
  • 25
2
votes
0 answers

Azure B2C as external identity provider for Thinktecture Identity Server

I have a setup consisting of my relying party app -> thinktecture identity server -> azure ad b2c. This is working as expected for login and signup using a signin or signup policy. The issue I am running into is that the password reset link on…
cgipson
  • 378
  • 1
  • 16
2
votes
1 answer

ResourceAuthorize("Read","UsersList") not working, ResourceAuthorizationManager

I am using IdentityServer3 to issue tokens and trying to use Thinktecture.IdentityModel.Owin.ResourceAuthorization.WebApi to authorize resource access of the web api. I am using below code to Authorize an action of the…
2
votes
0 answers

Unable to resolve with Autofac after upgrading to .NET 4.6.1

I already posted a question about this on GitHub and was advised to put it on StackOverflow: I'm having problem with ThinkTecture Authorization Server since updating to .NET 4.6.1. As some people know, AuthorizationServer uses AutoFac (and we've…
2
votes
1 answer

How to deal with extra hash in route? (AngularJS 1.5 + new/component router)

We're attempting to build an app using Angular 1.5 with the new component router bits. We've run into a bit of an edge case and we're wondering if there's any way around it. The Key Players IdentityServer v2: our client uses this for OAuth…
2
votes
1 answer

How do you turn off IdentityServer3's built in UI views (login and registration)?

I'm trying to implement IdentityServer3 into my architectural mix. I like the idea of registering Clients, Users, and Scopes. What I do not like is using IdentityServer3's built in login and registration forms. I have 4 different apps that need…
2
votes
3 answers

jwtBearer bearer token with rc-1 update to ASP.Net 5

I am having a lot of trouble getting my asp.net 5 web app to be able to accept JWT tokens. I have the code already fully functional using mvc5 and just want some help converting this code to be identical but work with mvc6. The way it is set up is…
Scott Selby
  • 9,420
  • 12
  • 57
  • 96
2
votes
1 answer

Is it possible to access claims from the client?

Say I have a vanilla ASP.NET MVC web app using claims-based authentication. The server has access to claims easily enough from the controller's User property. But say I wanted to access the claims in the frontend, is that possible? Or do I need to…
2
votes
0 answers

Integrating Identity Server 3 Openid Connect with CMS applications like Dotnetnuke (DNN)

I want to add Identity Server 3 v.2 to my DNN (Dotnetnuke) CMS portal so that I can have both external clients (native mobile, javascript SPA, native destkop) my DNN Web application, access WebAPI hosted in my DNN Web application. DNN has many…
2
votes
1 answer

Invalid_Grant error when using Refresh Token

I am using IdentityServer3's Hybrid Flow. I have enabled the offline_access scope inorder to get refresh token. When my access token expires, I am calling core/connect/token endpoin. I am passing client_id, client_secret, refresh_token and…
2
votes
1 answer

OAuth 2.0 not working on Local IIS

I was doing OAuth 2.0 authentication for my app (client credentials flow). I have Identity Server, ASP.NET Web Api as an app to which I'm authenticating and console app as a client app. Everything works fine when my Web Api is hosted on IIS Express.…
Paweł Reszka
  • 1,557
  • 4
  • 20
  • 41
2
votes
1 answer

How to share session cookie with Identity Server ASP.NET app and OWIN?

I am using Identity Server v2 along with SessionAuthenticationModule. I would like to add a new OWIN app (hosted in IIS) which can share the same session cookie "idsrvauth" with my existing STS. How do I do this please? Can the…
2
votes
1 answer

Substitute IdentityServer3 login system

Following @leastprivilege answer in my previous question, I concluded that neither are possible solutions: The login service doesn't support REST authentication (thus, can't use IUserService.AuthenticateLocalAsync and just connect to it) I don't…
2
votes
0 answers

Thinktecture and servicestack integration example

I am looking for an example on Thinktecture.IdentityServer3 integration with servicestack authentication. I couldn't find any sample around. Can someone shed a light? Thanks.
SH. Goh
  • 265
  • 2
  • 8
2
votes
1 answer

How to use IdentityServer as STS alongside ASP.NET Identity

I'm wondering if it is possible to use Thinktecture IdentityServer simply as an STS alongside an existing web app? That is, I want to use ASP.NET Identity for authentication in my web app because I want to use all of the built-in functionality like…