Questions tagged [identityserver2]

21 questions
9
votes
3 answers

How to add claims to access token get from IdentityServer3 using resource owner flow with javascript client

I use the resource owner flow with IdentityServer3 and send get token request to identity server token endpoint with username and password in javascript as below: function getToken() { var uid =…
3
votes
0 answers

DotNetOpenAuth VS IdentityServer3

What are the pro and cons of using DotNetOpenAuth vs IdnetityServer3/4 as the OAuth2 Authorization Server. What is most popular choice among these two and why?
3
votes
2 answers

How to Connect Rails Client to IndentityServer SSO provider

At work we have a system set up running a ThinkTecture IndentityServer SSO provider which currently provides authentication for several .NET and ColdFusion sites. I am currently working on a new site we are supporting in Ruby on Rails and am having…
Carl
  • 1,246
  • 3
  • 21
  • 39
2
votes
1 answer

Migrating from IdentityServer 2.4.0 -> IdentityServer4 4.1.2

We are getting ready to do an upgrade to our IdentityServer from v2.4.0 to the latest 4.1.2 and thought we'd throw it out there for input from others that have had to accomplish this. I have found some good reading on migrating from 3.1.x to 4.1.2…
mt programmer
  • 139
  • 1
  • 8
2
votes
0 answers

IdentityServer4 SSL problem, I can't make HTTPS request

I have some microservices. One microservice which is IdentityServer runs over HTTPS, I also have a second microservice which is a protected API and it uses HTTP(I can’t change it) This is protected API(Client credentials…
2
votes
1 answer

.net Core Authenticate with only WS-Fed

We are adding a new .net core web application into an existing environment, the center of which is an Identity Server 2 for authentication. When creating the new application I am having trouble getting it to use the existing authentication. The…
2
votes
0 answers

AD FS 3.0 with Thinktecture Identityserver 2 as claims provider: Event 197 and 364

We are having a problem transitioning from AD FS 2.0 to AD FS 3.0. We have an ASP.NET MVC application which uses federated authentication through AD FS. In our test environment we have Thinktecture Identityserver 2 configured as a claims provider in…
2
votes
2 answers

WS-Trust MEX endpoint in IdentityServer 2 returns HTTP 400 for GET requests

We've customised IdentityServer 2 to provide identity federation capability into Azure AD (for Office 365, etc). This has a WS-Federation endpoint for the passive requester flow and WS-Trust for active clients. The MEX endpoint for WS-Trust should…
Rob Potter
  • 948
  • 6
  • 28
2
votes
2 answers

OWIN / IdentityServer login stuck in endless loop

I have a working IdentityServer2 auth server that works fine. I am creating a new .NET MVC application and following this article (http://www.cloudidentity.com/blog/2014/02/20/ws-federation-in-microsoft-owin-componentsa-quick-start/) to set up MS…
Connie DeCinko
  • 996
  • 5
  • 19
  • 39
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…
1
vote
0 answers

travelocity example wso2

I'm new to wso2 IS and I'm following Configuring Access Control Policy for a Service Provider tutorial to implement an XACML policy. Everything works fine and I have followed the tutorial strictly. But as soon as I follow last step and hit the url,…
1
vote
0 answers

How to add custom OAuth approval page to 'Spring Boot OAuth2 Identity Server'

@Controller @SessionAttributes(types = AuthorizationRequest.class) public class WhiteLableController { @RequestMapping("/oauth/confirm_access") public String getAccessConfirmation() throws Exception { return "access_confirmation"; …
1
vote
0 answers

PhantomJSDriver is not auto-redirecting to a URL

I have written an automation test using Selenium with C#. When I am using Chrome driver to automate test then it's working as expected. Code are as below: IWebDriver driver = new ChromeDriver(); …
1
vote
1 answer

IdentityServer usage with enterprise applications

I have read IdentityServer documents and see that aims to manage resporce authorizaiton. And I want to learn that can I use this for my enterprise Api? For example I have Finance and IT department controllers in my API. Should I create 2 scopes for…
barteloma
  • 6,403
  • 14
  • 79
  • 173
1
vote
0 answers

getting claims from IdentityServer resource scope

I am having trouble getting IdentityServer to return any claims on a resource scope. I define the resource scope as: private static Scope Roles { get { return new Scope { Name =…
1
2