Questions tagged [federated-identity]

The concept of linking a single individual's digital identity across multiple (and usually disparate) IT systems. Federated identity is the larger concept encompassing narrow implementations such as Single-sign on (SSO).

The concept of linking a single individual's digital identity across multiple (and usually disparate) IT systems. Federated identity is the larger concept encompassing narrow implementations such as Single-sign on (SSO).

528 questions
0
votes
2 answers

PHP solution to do Google federated login easily?

I see stackoverflow's login system and love the simplicity of clicking one button to log in using Google gmail account. Is there something available for PHP? I know there's solutions out there for Django and others. But would like a PHP…
Scott Yu - builds stuff
  • 11,673
  • 8
  • 42
  • 55
0
votes
1 answer

ADFS Claims from multiple Claim Providers

I have an ADFS environment with a configured a second Claim Provider along side the default Active Directory Claim Provider.HomeRealm discovery is "disabled" because I have set my Web Application to only use the non-AD Claim Provider.The current…
Dscoduc
  • 7,714
  • 10
  • 42
  • 48
0
votes
1 answer

AWS - Add identity provider for same Cognito Identity ID

I am using the AWS SDK, using federated identity providers with Cognito. Right now, I'm doing this: private void SetupCognitoStuff() { _cognitoCredentials = new CognitoAWSCredentials( MY_IDENTITY ID, // Identity Pool ID …
JoeMjr2
  • 3,804
  • 4
  • 34
  • 62
0
votes
1 answer

OpenStack Keystone: the OpenID Connect Provider returned an error

I am trying to configure Keystone for Federation using OpenAM OpenID connect provider. When I access the Horizon dashboard authenticating a user though OpenID connect, I get the following error: the OpenID Connect Provider returned an error In…
0
votes
1 answer

Automatically create ADFS account for authenticated users

We have a Active Directory(AD) environment where we use ADFS to secure our websites. Is there a way to automatically create a user account for a website within ADFS if the current account has passed authentication from the AD machine. So someone…
gilesrpa
  • 969
  • 1
  • 12
  • 35
0
votes
0 answers

Go GAE Using LoginURLFederated function returns API error 2 (user: NOT_ALLOWED)

I am trying to use LoginURLFederated for logging users in. My code is as follows:- c := appengine.NewContext(r) u, _ := user.CurrentOAuth(c, "") if u == nil { if loginUrl, err := user.LoginURLFederated(c, "/webservice/uid-test", "gmail.com");…
ともこ
  • 775
  • 1
  • 5
  • 21
0
votes
1 answer

Federated Identity with IdentityServer and ADFS Resource Partner

I've done an exhaustive search over the past 2 days trying to find answers to all my questions and I believe I've hit a wall here. I sincerely apologize if this has been answered correctly elsewhere, perhaps I haven't been asking the right…
0
votes
1 answer

Azure AD authentication for Azure App Service - is the federated model for Azure AD supported?

We have an Office 365 tenant which uses the federated identity model. Is such a model compatible with Azure Active Directory (aad) identity provider authentication for a Cordova app which uses an Azure App Service backend? I would just try it, but…
markau
  • 854
  • 8
  • 21
0
votes
1 answer

Single Sign On across multiple systems including third party systems

With a number of digital platforms such as web and mobile, user profiles are also stored across multiple systems including systems owned by other parties that provide ancillary services. For example, the web channel provides the ability to purchase…
Motivated
  • 153
  • 1
  • 8
0
votes
1 answer

Gluu Server 2.4.1 not starting on CentOS 7

After install Gluu Server 2.4.1 using the following link: https://www.gluu.org/docs/admin-guide/deployment/centos7/ when I try to start using command : /sbin/gluu-serverd-2.4.1 start it gives me this error: Job for…
Ram
  • 73
  • 1
  • 5
0
votes
1 answer

Programmatically creating a client proxy for a WIF-secured WCF Service

Here's what I've done so far: 1) Created an ASP.NET MVC relying party application and secured it with ADFS v2.0. This works. 2) Created a WCF Service using the Claims-Aware service template for an ASP.NET website. I've turned ASP.NET compatibility…
Kevin Hoffman
  • 5,154
  • 4
  • 31
  • 33
0
votes
1 answer

Find out which federated partner issued token to WIF

I have an application that uses the Windows Identity Foundation to enable federated single-sign-on from multiple partners (let's call them Org1, Org2, Org3, etc). My WIF configuration, therefore, contains thumbprints of all the partners'…
Eugene Osovetsky
  • 6,443
  • 2
  • 38
  • 59
0
votes
0 answers

Unable to access WSO2 Identity server Management console

I have setup WSO2 Identity server 5.0.0 on Windows 2012 R2 server. I changed the primary user store to Active Directory following the instructions from WSO2…
0
votes
1 answer

Message level security and signing in SSO

I have a general question about keys used in SAML federations. Normally to establish an SSO, the XML messages and SAML assertions are signed by one partner (IdP or SP). Normally which partner should sign the message with the private key? Thanks
borna
  • 906
  • 3
  • 12
  • 32
0
votes
2 answers

How to Be an Identity Provider for all the things?

So we have an .NEt Owin / Katana Oauth Webapi2 Bearer server which sits on top of a SQL Server Database using .Net Identity and Entity Framework . Users can use Oauth to login from 3rd party apps and such, most of which are other .net MVC apps. Life…