I am trying to support "Hybrid" Federated Login and oAuth2 (using logic from this document) for a webservice which will:

  1. support Sign in using your Google account on my site. That is, from the documentation: You can also choose to use Google's authentication system as a way to outsource user authentication for your application. This can remove the need to create, maintain, and secure a username and password store.
  2. Access the user's Google Analytics.

Here are the steps I have done.

  1. I form my request to https://accounts.google.com/o/oauth2/auth with the scopes (Google Analytics) I want access to.
  2. I Get redirected to google where it has my icon and which scopes I am requesting access to. I grant access.
  3. I get redirected back to the callback page.
  4. I get the tokens (access and refresh), as well as a huge id_token string (which I don't know) and store all of this information in my database.
  5. I then make a call to https://www.googleapis.com/oauth2/v1/userinfo?access_token=xxxyyyzzz to get the user's email and name and store this information in my database too. I also notice it returns a id field which to my knowledge never changes and I presume is some sort of unique identifier. I store this too.

Question: If I go to Authorized Access to your Google Account section in my Google account, it shows that my site has access to "Google Analytics. BUT, it does not say Sign in using your Google account. This is what I am trying to accomplish. I would have thought using the logic would enable Sign in using your Google account. What am I doing wrong? And what would be the applicable call to google so that users can sign in to my site?

link|improve this question

80% accept rate
do you want the user to auto login them-self if they log-out from your application? – Umesh Awasthi Dec 7 '11 at 13:57
If they log-out from my application they will click a "Sign in with Google" button to get back in. This will then redirect them to Google to "authenticate" against my site. They then are bounced back to my site and are logged-in. – M Schenkel Dec 7 '11 at 15:39
I am now confused what exactly is your question :) – Umesh Awasthi Dec 7 '11 at 15:44
I edited the question so that hopefully it will make more sense. Check it out now. – M Schenkel Dec 11 '11 at 1:46
1  
If you go through steps 1-5 above, you've logged in via Google. If you then go to the 'Authorized Access...' settings in your Google Account, you should not see the option to sign in because you've just signed in, afaik... – Sean M Dec 13 '11 at 17:18
show 3 more comments
feedback

1 Answer

If your site has access to something like your Contacts or Analytics using OAuth, you'll never see "Sign in using your Google account". I'm pretty sure that's only if you use OpenID (not OAuth) only for sign-in.

Specifically, OAuth is used for giving you access to APIs to create/update/delete data, while OpenID is for signing in.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.