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
1answer
171 views

GoogleAuthorizationCodeTokenRequest connect time out exception when using Google's OAuth 2.0

I am able to get an authorization "code" in the callback from the user giving my web app permission to access a Google Calendar. But when I try to get an Access Token and Refresh Token using the ...
0
votes
1answer
161 views

Google OAuth 2 auth - Error: redirect_uri_mismatch even after registered uri

I'm trying to exchange authorization_code for access_token with Google OAuth2 $client_id = urlencode(GOOGLE_CLIENT_ID); $client_sec = GOOGLE_CLIENT_SECRET; $redirect_uri = ...
0
votes
0answers
186 views

Curl request to get access token using Oauth 2 (installed application) fails

I'm trying to get my Google API access token using Oauth 2 for installed applications. I can get the first login code as per the Google docs example, but when I try to use curl to get my access and ...
0
votes
2answers
65 views

why I am not able to get access token?

I am trying to get access tokenwith this code but not getting any success.I have checked each and every curl operation ,every thing is fine.but still not able to get token. this is OAuth2 Guidlines ...
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 ...
0
votes
1answer
399 views

Google Drive API access token and redirect url questions

1 - Is possible to run upload/download of files to google Drive API using always the same access token, a sort of shared host for all my site's users, where they can upload and download directly ...
0
votes
1answer
488 views

How to check GoogleCredential if it is expired

I have initialized the GoogleCredential variable from saved-access-token and saved-refresh-token. But i don't know to check it expired or not ? I know that GoogleCredential has a function ...
2
votes
1answer
876 views

How to get access token from GoogleCredential?

I am trying to get an access token to use the Google Play Android Developer API, and I got this far using the Google API Java Client documentation example: HttpTransport HTTP_TRANSPORT = new ...
3
votes
2answers
2k views

Google API Oauth php permanent access

I am using the google Caledar API. This is what I want, once you give the app the persmission, I can always use the app, without the need of giving access everyday. I keep hearing that I need to save ...
0
votes
0answers
75 views

OAuth 1.0 with Google Identity Toolkit

I'm changing our webapp's registration flow to use Google Identity Toolkit. GIT returns an OAuth 2.0 access token for Gmail/Google Apps accounts and an OAuth 1.0 request token for Yahoo accounts. ...
1
vote
1answer
292 views

OAuth 2.0 - When should an access token be renewed with refresh token?

I'm currently using OAuth 2.0 to access the Google API. From my understanding, I should use the returned refresh token to renew the access token. Should this be refreshed before it expires or should ...
0
votes
2answers
320 views

How to fetch data from google api token?

I want to use Google Login Credentials in my website.So i am using Google API. I get a google API token in URL. So i want to get Login User data? I am using C#. I got this URL after successfully Login ...
0
votes
1answer
114 views

Google Identity Toolkit federated login and OAuth access tokens

I have successfully implemented user authentication using GITKit and I was wondering if it's possible to get OAuth access tokens to be able to access user's gmail account, address book etc... Could ...
7
votes
8answers
9k views

How to refresh token with Google API client?

I've been playing around with the Google Analytics API (V3) and have run into som errors. Firstly, everything is set up correct and worked with my testing account. But when I want to grab data from ...
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 = ...
13
votes
4answers
676 views

Performing Google Federated Login/oAuth2 after initial Authentication

I am trying to support "Hybrid" Federated Login and oAuth2 (using logic from this document) for a webservice which will: support Sign in using your Google account on my site. That is, from the ...
3
votes
2answers
1k views

Google OAuthGetRequestToken returns “signature_invalid”

Trying for hours to get a request token using Google OAuthGetRequestToken but it always returns "signature_invalid". For a test I use the oAuth Playground to successfully request the token. Here are ...