Questions tagged [google-openid]

Third-party websites and applications can now let visitors sign in using their Google user accounts. Federated Login, based on the OpenID standard, frees users from having to set up separate login accounts for different web sites and frees web site developers from the task of implementing login authentication measures.

Third-party websites and applications can now let visitors sign in using their Google user accounts. Federated Login, based on the OpenID standard, frees users from having to set up separate login accounts for different web sites and frees web site developers from the task of implementing login authentication measures.

OpenID achieves this goal by providing a framework in which users can establish an account with an OpenID provider, such as Google, and use that account to sign into any web site that accepts OpenIDs. This page describes how to integrate Google's Federated Login for a web site or application.

Google supports the OpenID 2.0 protocol, providing authentication support as an OpenID provider. On request from a third-party site, Google authenticates users who are signing in with an existing Google account, and returns to the third-party site an identifier that the site can use to recognize the user. This identifier is consistent, enabling the third-party site to recognize the user across multiple sessions. Google also supports the following extensions:

457 questions
0
votes
1 answer

Gadget OAuth2 from OpenID Authentication

I am updating my app to OAuth2 and have few questions. Email address is the user id in our application. As explained in the old docs for openid association with the user id in our app, we were showing a popup storing the open_social_id in the…
0
votes
0 answers

Can't pass a session variable logging in with OpenID?

I tried running this code which creates a SESSION variable for the Google email but for some reason the $_SESSION['email'] does not want to store the data. I run the code and the only output I get after signing in with google is hello world…
pandoragami
  • 5,387
  • 15
  • 68
  • 116
0
votes
1 answer

GAE Python example for Direct Provider Federated Identities

I am using GAE Python with Django. I tried the following in my code: Relevant Python code: providers = { 'Google' : 'https://www.google.com/accounts/o8/ud', 'Yahoo' : 'yahoo.com', } class…
gsinha
  • 1,165
  • 2
  • 18
  • 43
0
votes
1 answer

Intuit OpenId with wildcard realm?

I have implemeted a handler to use Intuit's OpenId and evertything is working fine, but now I would like to use same identifier for different subdomains. I have added a wildcard to the realm (http://*.example.com) according to Google Federated Login…
user4485207
0
votes
1 answer

When using LightOpenId I get a different identity if using www

When authenticating my users via LightOpenId, I'm getting a different identity if they access the site using http://www.example.com or when they access via http://example.com. Is there any way to avoid this. Also, I'm planning on also allowing…
zundi
  • 2,361
  • 1
  • 28
  • 45
0
votes
1 answer

Google omniauth-openid login not working

For the past 2 years I had no issues with users logging in with Google using the omniauth-openid gem. All of a sudden logins have stopped working and I get a vague error: WARNING: making https request to https://www.google.com/accounts/o8/id without…
ramz15
  • 2,351
  • 3
  • 18
  • 22
0
votes
0 answers

Login with google openid and return on particular url i want add more data so give form action to the same return url

when login with Google openid then comes on returning url then if we add some data in database for move to another form page to give form action on that page to the same homepage in php. Login with google openid and to particular url and then list…
0
votes
1 answer

Migrating Google OpenId to new domain

I am using dotnetopenauth to let my users log in via Google. By default, I didn't need any kind of API key or anything, so I just went with that. Now, I need to move the site to a subdomain. I realize now that doing this causes Google to return back…
Dan Friedman
  • 4,941
  • 2
  • 41
  • 65
0
votes
1 answer

Java GAE, openid4java fails while doing discovery on google, Permission Denied

I am using Openid4Java to implement Openid for my app on GAE. I am also using Shiro for security. The day before i had reached a stage where things were failing for credentials matching, i.e discovery, making auth request, getting claimed_id were…
GWahi
  • 3
  • 3
0
votes
0 answers

OAuth2.0 issue in google response

I am having an issue regarding openid , I am not getting full information from google, after authentication check. I need full response from google. I am getting Blank Value. Please try to solve asap. my code is - using System; using…
Puneet_2696717
  • 221
  • 6
  • 14
0
votes
1 answer

Google Apps OpenID with trusted application - How to skip approval

Our clients use Google Apps for Education. We are implementing single sign on from Google Apps to our web application, using Google Apps as the identity provider. Due to the security issues related to working with students, it is not possible to…
0
votes
1 answer

Identify only GAE users

I am quite new to openID and GAE and there are lots of documentation that I get confused. So I am building a Java web application. I have GAE for Business. As I understand GAE are automatically become openID providers. Can I in my Java web app…
azamat
  • 13
  • 1
  • 5
0
votes
0 answers

Questions to allow Google Federated Login for a specific domain?

I am new to OpenID and have been requested to build a login system to work with the company's Google account. They want to restrict logins to users of their domain. They login into Gmail using their domain and they want this feature to allow access…
Jeremy
  • 1,878
  • 2
  • 30
  • 54
0
votes
1 answer

Purpose of ProviderUserName column in DotNetOpenAuth sample

I've started an ASP.NET web site in Visual Studio using a Microsoft pre-defined template. This is to help me learn about OpenID within ASP.NET. Inside the included SQL database within the sample site, there is a table called UsersOpenAuthAccounts…
EvilDr
  • 8,943
  • 14
  • 73
  • 133
0
votes
1 answer

Google userId vs.userProfileId

What is the difference between the userId and the userProfileId that the following URL returns? http://www.google.com/reader/api/0/user-info (sign-in to google required to see the json results from the above URL")
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100