0
votes
0answers
27 views

Google App Engine Channel API - reusing token

I have been trying to set up a chat facility using the Channel API and it is pretty much there, although I'm just struggling to get my head around the token and channel use. What I am doing is when a ...
0
votes
0answers
57 views

Refresh token google api php library

In my web application I am using google api php client for accessing the google tasks. I have followed some tutorials like here. $client = new Google_Client(); $tasksService = new ...
0
votes
2answers
53 views

GTMOauth2 iOS refresh token

i start a demo app from this exemple https://github.com/Christian-Hansen/simple-oauth2 I can authenticate ti google and get back the AUTH object. If i NSLog the auth object i can see access_token, ...
0
votes
1answer
64 views

Trading Google Oauth2 Code for Oauth2 Token in Asp .Net

I have checked stackoverflow and tried several solutions but I continue to get a 400 when trying to make a post request to the google token servers to trade the code for an oauth2 token. The code is ...
0
votes
0answers
116 views

google calendar get public calendar

I'm using google-calendar-api-v3 to develop ipad app. I can get all the events by url: www.googleapis.com/calendar/v3/users/me/calendarList?key={my google api key}"; and ...
1
vote
1answer
444 views

How to get Google TokenAuth working?

I'm developing a youtube upload application and have some troubles with a specific part of authentication. ClientLogin so far, works and uploads are received by Youtube. However I have to redirect my ...
0
votes
1answer
927 views

How to validate google oauth2 token from java code

I have an android application and web-server working together. Now I want user log in via google from android application (or use one of the google accounts on android). Then andriod application ...
1
vote
1answer
159 views

Google authentication from PHP

I know there are a lot of similar questions here in SO but I tried these solutions for hours but they didn“t work for me. I always get a { "error" : "unauthorized_client" }". I want to ...
0
votes
0answers
123 views

How to keep Google token on my computer - OAuth2 - Java

I'm using Oauth2 for accessing google api on my java program. My program redirects to page where I allow access to my account, get a temp code, give it to my computer and gets a token. I understood ...
0
votes
3answers
668 views

How can I use Google's OpenID and/or OAuth services to login and allow access to APIs with only ever one prompt to the user?

I am attempting to create a login system for my website that permits both authentication via Google's API and access to any of the OAuth-supported Google Data APIs while ideally only showing the user ...
2
votes
1answer
2k views

Python Oauth2 - login with Google

I have been searching for 2 days for an answer, but nothing came up. I am trying to make integrate Oauth2 for login with Google on Django. The code I have throws an exception - "The token is ...
3
votes
1answer
475 views

Get Google AuthSub token from android app

I'm writing an android program which must interact with google documents, so I have watched this sample, but it uses an AuthSub token. How can I get an AuthSub Token from an android app?
0
votes
1answer
417 views

Google authentication with Java apache http tokens

I'm trying to authenticate with Google using a simple Java program. I post to the correct URL with my credentials. I get a response with HTTP status code 200 but that doesn't contain any of the ...
1
vote
5answers
3k views

How to call https://www.googleapis.com/plus/v1/people/me at google

I am developing an Android application and need to get the "me" info from google but I always ends up in either response code 401 or 403. What am I doing wrong? Here is my code: private static final ...
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 ...
10
votes
3answers
5k views

Get refresh token google api

I can't get my refresh token with my code. I can only get my access token, token type etc., I have followed some tutorials like putting access_type=offline on my login url echo "<a ...
0
votes
1answer
258 views

does google openID issue token?

Myself implementented SSO in my application using Authentication Exchange in c# by Dotnetopenauth My Doubts follows, On Response of my AX request , i dont receive any token. should i need to send ...
0
votes
0answers
206 views

Why would I be getting “SyntaxError: Unexpected token <” [closed]

If I go to google.com I get this alert message when google loads, why would I be getting this alert? Is google broken?
5
votes
2answers
5k views

Get Google API Token

I need to get the google valid token to use Google APIs, but my code does not work. could you please advice me? $client_id = '495225261106.apps.googleusercontent.com'; $client_secret = ...
1
vote
0answers
580 views

Google Calendar Insertion using Auth Token Failed

Issue summary: 1. CalendarService myService = new CalendarService("Giventa-Adwiise-1.0.0"); 2. myService.setUserToken(authSubToken); 3. //myService.setUserCredentials("xxxxx", "xxxxx"); When using ...
20
votes
1answer
5k views

Can you explain how google authenticator / wireless tokens work?

I've been curious as to how google generates one time log in tokens on an iPhone app without comminicatig with the server when the token is Assigned. The token changes every ten seconds. How does ...
2
votes
1answer
3k views

how to acquire a google authentication token

Retreiving the URL http://www.google.com/reader/api/0/token returns a token, which is periodically updated. What's required to generate this token? Apparently, and I'm guessing a, or some, cookies ...
0
votes
1answer
315 views

WinInet google maps data api receive error Invalid Token

I am trying to login to Google maps data API (get MyMaps) with wininet and delphi but always recevied response: Invalid Token. I have gotten auth toke with wininet HTTPS call. What's the problem ? ...