google-openid

Google Apps OpenID url

拜拜、爱过 提交于 2019-12-06 19:28:52
问题 Problem: My organisation, ExampleFooBar, uses Google Apps. On our website I want to enable OpenID Single Sign-In (like StackOverflow), but only allow @examplefoobar.com email addresses to sign in. What OpenID url should I use for a Google Apps email address? As per comments on Include OpenId in drupal, the domain http://www.google.com/profiles/<username> can be used for normal Google accounts, but this doesn't work for Google Apps accounts. Google also provides the url https://www.google.com

Migrating from OpenID 2.0 to OpenID Connect

 ̄綄美尐妖づ 提交于 2019-12-06 10:49:33
As we know Google Login is migrating from OpenId2.0 to OpenId connect. I have changed my code as like require 'oauth/openid.php'; $openid = new LightOpenID; $openid->realm = "http://".$_SERVER[HTTP_HOST]; $openid->identity = 'https://www.google.com/accounts/o8/id'; $openid->required = array('contact/email'); if (!headers_sent()){ header('Location: '.$openid->authUrl()); }else{ echo '<script type="text/javascript">'; echo 'window.location.href="'.$openid->authUrl().'";'; echo '</script>'; } } But it is throwing an error like invalid parameters sent . Should I need to add/change anything? 来源:

Is all I need the “identity url”? - OpenID

半城伤御伤魂 提交于 2019-12-06 03:11:00
问题 I'm just wondering if all I need is the identity url in order to to theoretically attach an OpenID account to a user's account. I have identity urls that look like the following: https://www.google.com/accounts/o8/id?id=YGnyuGHMUmhUI98nuhUMhu98nuN. Is this different between OpenID 1.0 and 2.0? Just in case someone asks: I'm using Django + django-openid-consumer Thanks guys =) 回答1: All you need to bind to a user account is the "Claimed Identifier" which is what the sample URL you provided is

Can you use OpenID Connect without obtaining OAuth credentials?

旧时模样 提交于 2019-12-05 15:35:18
In Google's OpenID Migration Guide , for transitioning from OpenID 2.0 to OpenID Connect, step 1 is that I need to obtain OAuth credentials for my application. One thing I like about "regular" OpenID is that I can allow my users to authenticate from any IDP of their choosing. Whether they use Google, Yahoo, or any other endpoint, as a developer I don't need to go through the trouble of manually obtaining OAuth credentials from each of those providers and configuring my application to support them. As providers discontinue support for traditional OpenID, is there a way for me to allow users to

Google Apps OpenID url

旧时模样 提交于 2019-12-05 01:11:40
Problem: My organisation, ExampleFooBar, uses Google Apps. On our website I want to enable OpenID Single Sign-In (like StackOverflow), but only allow @examplefoobar.com email addresses to sign in. What OpenID url should I use for a Google Apps email address? As per comments on Include OpenId in drupal , the domain http://www.google.com/profiles/<username> can be used for normal Google accounts, but this doesn't work for Google Apps accounts. Google also provides the url https://www.google.com/accounts/o8/id but using that would allow any google user who found our website's login page to sign

Difference between Google “OpenID Connect” and “sign-in with Google”?

余生颓废 提交于 2019-12-04 23:34:15
I want users to my website to use Google Accounts to authenticate / sign in to my website. The primary use case being users will edit and generate content and we want to log ownership in a secure way. We are not interested in obtaining users Google data, we just want a means to authenticate users. After googling, I came across some documentation, which seems to explain how to do this OpenID Connect (OAuth 2.0 for Login) . But the documentation immediately says "Note: If you want to provide a “sign-in with Google” button for your website or app, we recommend using Google+ Sign-In, ...", which

What is the future of OpenID, OpenID2, Open Connect? Is it worth implementing a provider? [closed]

点点圈 提交于 2019-12-04 16:15:02
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 2 years ago . I see OpenID logins available everywhere, and decided that I should look into implementing my own provider on my server so I can control my information and my login. This is, surprisingly, quite complicated and difficult. Even though many sites allow OpenID logins (such as

How do I validate an access token using the at_hash claim of an id token?

十年热恋 提交于 2019-12-04 13:30:24
Say I have the following response from Google's OAuth2 /token endpoint after exchanging the code obtained from the /auth endpoint ( using this example OAuth Playground request ): { "access_token": "ya29.eQETFbFOkAs8nWHcmYXKwEi0Zz46NfsrUU_KuQLOLTwWS40y6Fb99aVzEXC0U14m61lcPMIr1hEIBA", "token_type": "Bearer", "expires_in": 3600, "refresh_token": "1/ZagesePFconRc9yQbPxw2m1CnXZ5MNnni91GHxuHm-A", "id_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjJhODc0MjBlY2YxNGU5MzRmOWY5MDRhMDE0NzY4MTMyMDNiMzk5NGIifQ

Android authentication to google accounts passed on to Google App Engine

只愿长相守 提交于 2019-12-04 08:18:19
Before I dig into the details of implementing this particular design, I wanted some advice/validation on whether I was approaching it correctly. I have a beginners knowledge of Android, advanced beginner in Python, GAE, and OpenId. Environment Android application Web Services built in Python on Google App Engine User(s) with Google Account Scenario I want to enable sign-in capabilities in my Android application without writing my own authentication system in GAE. Within the app, the user should be able to play as a guest without the ability to save high scores. If a user would like to have his

Asp.net identity Google account id migration from openId to oauth

▼魔方 西西 提交于 2019-12-03 21:05:40
I have an existing asp.net mvc5 application using DotNetOpenAuth for Google OpenId authentication. I am migrating to Asp.Net Identity, and using Google+ Auth with OAuth2.0. But I have seen thant I can't map existing OpenId account Id to OAuth2.0 Id : - Old id is : https://www.google.com/accounts/o8/id?id=blablabla - New Id is : a long number Since I would like to use new id, I am searching for help on migrating identities. I have not found yet a simple sample to achieve this. I am using a new asp.net mvc5 application (freshly scaffolded), added Microsoft Identity (with custom implementation