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

How can restrict the use of Issued access token of one machine in another machine

I am using ThinkTecture idenity server v3 as Idenity provider. It issues me access tokens. I am using these access tokens for web API communication. It works perfectly. My Question is If anyone got this issued token and try to access the web API…
Vamsy
  • 144
  • 4
  • 16
0
votes
1 answer

Thinktecture multiple website connect ( SSO )

I just started exploring Thinktecture becuase i have multiple websites and i want Single Sign On between them . So , i started working on this and i am following this tutorial Thinktecture tutorial Every thing works fine following this tutorial ,…
Ancient
  • 3,007
  • 14
  • 55
  • 104
0
votes
1 answer

Thinktecture IdentityServer3 - Single sign out for distributed system

I'm building an distributed system with multiple clients that use a single identity server for authentication. This provides single sign on between these clients. When a user signs out from one of the clients, and thus signs out from the identity…
0
votes
1 answer

Prevent login using OpenId Connect in Asp.NET MVC

I've got an OpenIdConnect service running (Thinktecture IdSvr) and I can login to my app perfectly. When a user successfully logs in using OpenId Connect I want to check if they exist in my client user store and either allow them to continue or log…
BenCr
  • 5,991
  • 5
  • 44
  • 68
0
votes
1 answer

IdentityServer3 with external user management

Given a scenario where a web hosted IdentityServer3 only handles authorization, being user authentication handled by an external custom service, what is required to implement to support this? A custom OWIN middleware?
0
votes
1 answer

Where do I log application-logins in Thinktecture Identity Server v3

We have IdentityServer v3 with a custom UserService that handles two factor auth. We use it for many clients (webapps), and I would like to track the number of logins to the different applications. I see that GetProfileDataAsync is called every time…
Larsi
  • 4,654
  • 7
  • 46
  • 75
0
votes
1 answer

ASP.NET Identity 2.1 2FA configuration

As we are integrating Thinktecture identity server 3 with Microsoft ASP.NET Identity 2.1 we managed to configure and enable 2FA (Tow Factor Authentication) for our clients. The problem is that default implementation of MS uses TOTP and its valid…
0
votes
1 answer

Thinktecture v3 auto login for ADFS users within the same domain

I am using Thinktecture identity server v3 for authentication and authorization. It works good with local database. I added external identity provider as ADFS. It also works good but it asks credentials for intranet users. My requirement is…
Vamsy
  • 144
  • 4
  • 16
0
votes
1 answer

DNX on Mac OS X: System.DllNotFoundException

I'm trying to run Thinktecture IDP v3 (https://github.com/IdentityServer/IdentityServer3) on Mac OS X with DNX beta4. To do this, I'm using one of their examples:…
ryan1234
  • 7,237
  • 6
  • 25
  • 36
0
votes
1 answer

Thinktecture IdentityServer self-service user creation

We currently have several web systems that are using the old Membership provider in silos. I am looking at implementing a new server for identity management and discovered IdentityServer. Is it possible for a user to self-create an identity out of…
scottrudy
  • 1,633
  • 1
  • 14
  • 24
0
votes
1 answer

Bearer token Authorization

I am having a problem with Identity Server 3 and bearer token authentication. Basically, I can call my Web API methods with an expired access token and the Web API authenticates the user and returns the data. I have set my client to have an access…
0
votes
1 answer

Danamic Claims in IdentityServer

I'm looking at the AspNetIdentity_2fa sample and trying to modify it to include some dynamic claims for users. Let's name it calculated_value claim which is created dynamically when a user is authenticated, and then is included in the user's claims…
orad
  • 15,272
  • 23
  • 77
  • 113
0
votes
1 answer

Using customuserservice sample of Identity Server V3 in MVC not able to redirect to login page

I am using CustomUserService sample of Identity server v3. I added home controller as below - `public class HomeController : Controller { // // GET: /Home/ public ActionResult Index() { return View(); …
0
votes
1 answer

Simple Http vs OAuth Authentication

Everywhere on the internet i see people saying that I should use OAuth instead of Basic HTTP Authentication. Meaning sending Base64Encoded username:password as part of the Autorization header. I do this because i don't want to be redirected to my…
0
votes
1 answer

Using own user repository/ database table for IdentitiyServer3 to authenticate against

Can you please help me with some insight on using my own User repository/ database table for Identity server (IdentityServer3) to authenticate against? I know other people have done it, but can’t seem to figure out how?