Google AuthSub authentication for Google endpoints.
Questions tagged [authsub]
62 questions
0
votes
1 answer
Remove AuthSub token from URL after redirect
When using AuthSub authentication, after the user logs into a Google service they are redirected back to the original page with a authentication token in the URL:
http://www.example.com/?token=XXXXXXXXXXXXXXXXXXX
Is it possible to remove this token…

charliesneath
- 1,917
- 3
- 21
- 36
0
votes
1 answer
How do I retrieve the email address associated with a session token from the Google Data / Google Contacts API?
Possible Duplicate:
How does one retrieve the email address of a user with GData?
Using the GData Java client (http://code.google.com/p/gdata-java-client/), I create an authsub request URL by using AuthSubUtil.getRequestUrl(). I then exchange…

Tyson
- 968
- 1
- 6
- 15
0
votes
1 answer
Secure API AuthSub in Java (Google Calendar API)
I would like to authenticate my Google AuthSub requests. Basically I need to generate a private key and respective certificate, upload this certificate to Google, and sign with the key on subsequent calls to Google AuthSub. I think the most…

MADgood
- 143
- 1
- 1
- 8
0
votes
2 answers
403 error when trying to access Google Authsub from FLash Application (Authsub for Actionscript)
I am trying to get my Flex application to authenticate with google using the instructions here:
http://code.google.com/apis/gdata/docs/as-authsub.html
I have copied the example there and am trying to get it to work. I am running my app on a loca…

Roaders
- 4,373
- 8
- 50
- 71
0
votes
2 answers
AuthSub/OAuth, ASP.NET and Google API
I have an Idea for a simple webApp that would cross-link information from Evernote to Google Calendar. I was able to find a good Evernote Quickstart project but I am now searching for something to start with to begins accessing Calendar. Please…

Kamil Zadora
- 2,367
- 6
- 34
- 43
0
votes
1 answer
Managing users data in app engine
I'm writing some Google App Egnine + Android service for self and my friends.
For each user this service will ask AuthSub token for another Google services.
And by cron will retrieve information from this services and send it via c2dm on their…

bayda
- 13,365
- 8
- 39
- 48
0
votes
1 answer
Fetching google contact data using AuthSub
Can anyone there please point me where did i go wrong with this?

anjan
- 3,147
- 6
- 26
- 31
0
votes
1 answer
Getting Invalid Authsub Token Error 403
I am trying to authenticate my application using Blogger API but when user grant access to the application and blogger api return the token and the token i use to exchange the by sending the request on…

Syed Adeel Asim
- 1
- 1
0
votes
1 answer
AuthSub and Blogger
I'm trying to retrieve a list of blogs of a given user.
I think I've successivelly authorizated myself with all the token stuff, but when I ask for the list blog, I recieve a 302 moved temporarily.
I'm using curl to send the requests.
In my callback…

Pherrymason
- 7,835
- 8
- 39
- 57
0
votes
1 answer
Does the token generated by Google's AuthSub change when a user logs into your application for the 2nd or 3rd time?
Im trying to build and automated log in using Googles authSub, but I need to store data for the users the log in.
... and basically I don't get it. Should the token from Google change the 2nd time a user logs in, that user looses his / her info and…

CodeChap
- 4,132
- 6
- 30
- 40
0
votes
1 answer
Invalid Authsub token in Google sites for apps
I do not get any error while trying to access feed content for google sites from application hosted on gmail authenticated account. But I get
Token invalid - Invalid AuthSub token.
when I try to access application from google apps accounts managed…

dhaval
- 2,368
- 9
- 35
- 60
0
votes
0 answers
Some usernames appear as jumbled strings! YouTube API AuthSub
My website uses the YouTube API for users to interact. Not all, but a few usernames come into my system which are non-existant channels and I'm not sure how to detect this?
They are the correct length and I already check for alphanumeric strings…

Mike GB
- 178
- 12
0
votes
1 answer
ASP.NET site authorization issue with google and youtube api's
I have implemented several google APIs in my website - to enbale contacts import and youtube uploads.
while everything works great locally (under my own development server's localhost), there are some problems using them thru the site (hosted on…

ASP bum
- 11
- 3
0
votes
1 answer
Google OAuth 1.0 - set scope port to 443 (AuthSub Token has wrong scope)
I have been trying to learn OAuth (1.0) and have been testing my code by trying to access my contacts on Google. This is easy because I don't have to set up a friend/consumer relationship (Google just allows anonymous/anonymous for the consumer…

Andrew Latham
- 5,982
- 14
- 47
- 87
0
votes
1 answer
AuthSub. How to check token existence? Python gdata client
I develop a decorator to authenticate my app and start to work with youtube API. Decorator appointed to wrap a REST resource class methods.
def youtube_auth(f):
def wrap(self, *args, **kwargs): …

I159
- 29,741
- 31
- 97
- 132