0
votes
1answer
57 views

Google OAuth 2.0 inconsistent token type?

Google says in its own OAuth 2.0 specs in accordance with the OAuth 2.0 draft that the authorization header should be: Authorization: Bearer {access_token} And indeed it works with the G+ API. But ...
1
vote
0answers
70 views

How to check if google user has already made an account with my site?

In my site users are able to sign-up with their google accounts. I am able to do that just fine and I store their access token and when the access token expires. Also I get a new token if their ...
1
vote
0answers
42 views

oAuth 2 google login - access_token and refresh_token

As far as I understood access_token has a short life about 1 hour and then if the user wants to log on I should use refresh_token to take new access_token. What I observed in my tests is that even on ...
1
vote
1answer
100 views

access token for google cloud print service

I want to use google cloud print service for my application, Concept is : Buyer can purchase products from my site and he should send order list to supplier's printer. For this, Supplier should ...
0
votes
0answers
94 views

OAuth1.0 2Legged OAuth error signature_invalidbase_string

hi i am following this tutorial (link) .i am sending this request in google app engine java.i am trying to implement a 2 legged OAuth authentication.i am sending a post request to url ...
1
vote
1answer
392 views

Google authentication return invalid grant

I know this question has been posted before. But none of them has the answer. So I am re-posting the question. I am trying to get the analytics data. But after authenticating I get the 'invalid_grant' ...
12
votes
2answers
3k views

Google OAuth refresh token is not being received

I want to get the access token from Google. The Google API says that to get the access token, send the code and other parameters to token generating page, and the response will be a JSON Object like ...
1
vote
0answers
232 views

validity of x-google-token

Refer to this post. As per the post everything works fine for me, but still I have a suspect for the validity of the auth token. Is there any validity for that token? I tried to login with the same ...
7
votes
1answer
2k views

Do Google refresh token expire?

I have used the refresh token several times in just a short period for testing purposes, but I wonder that, do Google refresh token expire? Or I can call the same refresh token to get another access ...
1
vote
2answers
1k views

How to know if Access Token expires in Google Api PHP

How will I know if my access token has expired. I'm using try and catch try { $result = ...
0
votes
1answer
3k views

PHP. How to get the access token. Authenticating with OAuth 2.0 for Google API

I found this function that supposedly gets the accessToken, but I get nothing. I do have the $_REQUEST['code'], and the other information needed in this function. Any ideas what is wrong here? ...
1
vote
1answer
141 views

How can I get the user's email address in google apps?

How can I get the user's email address if I have the access token of that user in my google plus apps?
0
votes
1answer
296 views

How to get Google OAuth tokens manually?

I need to build a app that upload video youtube, my question is about logging in google. My app is for only one client, i don't want the user need to logging in youtube then before allow access to my ...
0
votes
1answer
2k views

Google Access Token Request: Invalid Token/Signature

Been pouring over Implementing my own Google oAuth methods for three days now. Keep hitting snags. Not sure what variables are at play with the problem anymore. I need fresh eyes and proper advice. I ...