openid

How to make Native Client Application available to multiple tenants?

只谈情不闲聊 提交于 2019-12-08 11:12:47
问题 I have a Xamarin mobile application that authenticates using Azure Active Directory this works fine and I am receiving the token and user details. To do that I had to set up a 'Native Client Application' under 'Add an application my organization is developing' option in Azure. My Web Application/API which is multi tenant is listed under 'permissions to other applications' within the Native Application tab in Azure. The Web Application works well using OpenIdConnect and the multi tenancy works

How to add a custom MVC controller to Identityserver3 owin application

早过忘川 提交于 2019-12-08 10:56:14
问题 I have an owin app which issues OAuth token to different applications. Which is using IdentityServer3 for issuing tokens. My requirement is I need to implement custom MFA for some of the apps before releasing the token. The MFA controller is a custom implementation and have a custom view. I added an MVC controller in my owin app that contains identityserver3 code, and before release the token, to app, I redirected the user to this controller method. My issue is I am not able to read the user

Zend Framework open id extensions with google

[亡魂溺海] 提交于 2019-12-08 10:37:46
问题 How to use openid extensions with google? I have something like this, I allready applied some patches which are basically the same as here: http://ak33m.com/?p=71 It does work without extensions? $extensions = new Zend_OpenId_Extension_Sreg(array( 'nickname' => false, 'email' => true, 'fullname' => false ), null, '1.1' ); if ($form->isValid($post)) { $open_id_adapter = new App_Auth_Adapter_OpenId($post['openid_identifier'],null, null, null, $extensions); $result = $auth->authenticate($open_id

null ClaimsResponse with DotNetOpenAuth in ASP.NET MVC 2 application

谁说胖子不能爱 提交于 2019-12-08 07:39:20
问题 I'm trying to get DotNetOpenAuth (latest version) to work with ASP.NET MVC 2 website. I get the first part working, the action is invoked when user selects OpenID provider, I get correct identifier passed in, I then get correctly redirected to the provider website, I get redirected back to my website but here's the problem. The claims I requested are null (see the code below). public ActionResult TryAuth(string openid_identifier) { var openid = new OpenIdRelyingParty(); var response = openid

Create a new user with new openid login authlogic

给你一囗甜甜゛ 提交于 2019-12-08 07:07:07
问题 I've implemented authlogic in a rails site, and I'm trying to get openid to work correctly. So far, you can login just fine as long as you have an existing account, but not so much if you don't. I'd like to be able to automagically create a new account if the identity_url is not already in the database. The problem is that I also need to store some additional info. if the user is logging in for the first time with their openid, I'd like to ask them to fill in basic info (name, email), BEFORE

openID with domain.mp

和自甴很熟 提交于 2019-12-08 05:19:07
问题 i developed a login form that allows the use of openID. Works fine for most users, but this user has a .mp address. The openID connection keeps on failing. i tracked down the .mp domain to the provider http://chi.mp (yeah, i know). I use the simpleOpenId php class to perform the connexion. It returns no error, just dies silently. Anybody has idea on where this issue comes from? UPDATE: As suggested, i've set up the Janrain library at http://openidenabled.com/php-openid/ as that works with

LightOpenID - Provider issued an assertion for an Identifier whose discovery info did not match

让人想犯罪 __ 提交于 2019-12-08 04:42:50
问题 This is the error I get after logging into Stack with my LightOpenID provider script. The OpenID Provider issued an assertion for an Identifier whose discovery information did not match. Assertion endpoint info: ClaimedIdentifier: http ://sub.mydomain.net/?cgillis ProviderLocalIdentifier: http ://sub.mydomain.net/?cgillis ProviderEndpoint: http ://sub.mydomain.net/ OpenID version: 2.0 Service Type URIs: Discovered endpoint info: [{ ClaimedIdentifier: http ://specs.openid.net/auth/2.0

Google Apps (for business) OpenID login for ASP.NET intranet site

别来无恙 提交于 2019-12-08 04:32:35
问题 My company uses Google Apps for our e-mail/business app provider. Every employee has an account here. I'm looking into creating an asp.net web app that would allow users to sign-in (using their Google Apps account) and then accomplish certain things (first goal: keep a current record of the employee's skillset). Before I get started, I wanted to find out if an OpenID login system using Google Apps is any more difficult than doing it the standard way, or if I need to be aware of any pitfalls.

OpenID Connect - Using IdentityServer for SSO between WinForms and Web Application

大城市里の小女人 提交于 2019-12-08 04:23:51
问题 I have Thinktecture IdentityServer set up and I have two trusted client applications, a WinForms app and a Web application and I want to implement SSO between them both. The user will first open the desktop application which has a login page that authenticates with the identity server. The desktop application will include some generated web links which when clicked open a new browser window to a secured area of the Web application that requires authentication, however, upon clicking these

Social Authentication With CodeIgniter

吃可爱长大的小学妹 提交于 2019-12-08 02:11:43
问题 I have a project where I'm supposed to integrate Facebook Login & Twitter Login buttons using CodeIgniter, I was wondering what would be the best approach? As this project requires more Social Login buttons in the future (like LinkedIn , Google , etc). I heared of OpenID & JanRain. 回答1: You can use Phil Sturgeon's Oauth/Oauth v2 Codeigniter libraries. https://github.com/philsturgeon/codeigniter-oauth https://github.com/philsturgeon/codeigniter-oauth2 Oauth v2 is the way to go. Much easier and