Google implementation of the OAuth 2.0 protocol.
0
votes
1answer
36 views
Get OAuth access token to Drive API for AppEngine from an Android application
What I want to achieved:
Get the access token to access the Google Drive API from an AppEngine application, from the user Android smartphone.
I have an Android application and a GAE server with ...
1
vote
0answers
15 views
Google Reader Subscriptions With OAuth2
I'm trying to get my subscription list through OAuth2 from Google Reader.
I'm using Codeigniter and a library - CI_OPAUTH. I can get the permissions scren with no problems and give Google Reader ...
0
votes
0answers
28 views
There is a / in my OAuth2 access token in php
Okay, here is my issue:
In my Google OAuth2 Access token there is a /
This may not seem like a big deal, but when doing the callback I get a lot of issues.
eg: callback.php?code=lfjhl/djbj (that ...
0
votes
1answer
23 views
Google Analytics API - Retrieve refresh token with OAuth2 & ASP.NET
I'm trying to set up offline access for a Google Analytics API application using OAuth2 and I'm using ASP.NET to POST my authorization code in exchange for a refresh token but I can't get a response ...
0
votes
1answer
34 views
OAuth flow with refresh tokens. Error 500
I am making a PHP application, that will use a single google drive account.
So as an administrator i first give permission to google drive account.
When permissions are accepted, i save the refresh ...
-1
votes
0answers
76 views
Google OAuth2 down? [closed]
Since this morning we are catching Deadline exceptions when using the Google OAuth2 API.
As mentioned here, these errors are more and more common on the App Engine but this morning the API seems to ...
0
votes
1answer
29 views
Logout link with return URL (OAuth)
My application is integrated with Facebook, Google and Microsoft (using OAuth).
To logout from facebook I'm using the following URL:
...
0
votes
1answer
46 views
How do I get gmail contacts using javascript
How do I get gmail contacts using javascript. Aka What is the AJAX call that I should make? I already have the user OAuth Token which I got because the user signed up to my site using google. I have ...
0
votes
1answer
14 views
I want to authenticate an admin using OAuth2 and access data for accounts that are under this admin
I want to authenticate an admin using OAuth2 and access data for accounts that are under this admin.
Primarily something like this, I have an organisation : A --> B, C, D where A is the admin.
If i ...
1
vote
2answers
51 views
Why is Google Calendar API (oauth2) responding with 'Insufficient Permission'?
I'm doing a get request to the following URL (with {id} replaced with the id from the web interface):
https://www.googleapis.com/calendar/v3/calendars/{id}
A few assertions:
The Authorize header ...
0
votes
1answer
17 views
Google Oauth for private networking
I am trying to implement google oauth 2.0 as authentication method for my django website.
For developing purpose, I was working on localhost, which is just fine.
Now my website need to be moved to ...
0
votes
1answer
31 views
GoogleOAuth2 Auth Failure “unauthorized_client”/ Python GoogleAdWord API
Iam trying to accsess OAuth2 in Python (the code is the same as ...
0
votes
1answer
28 views
Google Shortener with oauth 2.0 2-legged
I am blocked in the creation of my mobile App.
I want to be able to use google shortener and his analytics feature in my app, the problem is that I want use the 2-legged Oauth2.0 and I haven't ...
0
votes
1answer
43 views
Google OAuth2: When and how to use refresh token
I have an installed c# app with code working that gets the authorization code and exchanges it for an access token. I am storing off the refresh token. I know at some point I need to use it to get a ...
1
vote
1answer
42 views
Getting invalid_grant when trying to refresh token
When an OAuth2Credential object tries to refresh its access_token, sometimes it gets an error of invalid_grant and then it becomes unable to be refreshed. The code I used is based on Google's python ...