Tagged Questions
0
votes
2answers
349 views
How to use OAuth2Credentials with Google API gdata client in python?
I've worked out how OAuth2 works (via https://developers.google.com/api-client-library/python/guide/aaa_oauth) and now have an OAuth2Credentials object (let's call the object credentials) that I want ...
2
votes
0answers
455 views
Is the hqdefault thumbnail guaranteed to be there?
Is the "hqdefault" thumbnail guaranteed to be available for YouTube video information in the gdata API?
I'm currently using the Zend library to retrieve video info from the YouTube API using PHP, but ...
5
votes
2answers
1k views
Using the OAuth Access Token from django-social-auth with Google data api (calendar)
I'm trying to use the OAuth Token I get from django-social-auth to access the users calendars.
So in the django-social-auth configuration I set:
GOOGLE_CONSUMER_KEY = 'anonymous'
...
2
votes
2answers
1k views
Google Contacts API XML parsing with PHP
I have an xml feed from Google Contacts API, but I have trouble reading <gd: tags.
$xml = simplexml_load_string($google_contacts);
This reads every elements except the <gd: tags, which ...
0
votes
1answer
280 views
How do I retrieve the email address associated with a session token from the Google Data / Google Contacts API? [duplicate]
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 ...
0
votes
0answers
809 views
Google Calendar Javascript API “grant access” page
I am using the Google Data API in Javascript to access google calendar. But when I grant the access to the website for accessing my calendar, it should return to my first HTML page, but this doesn't ...
0
votes
2answers
2k views
Get a exception of “error connecting with login URI” when running Google Data's example
When I run the example CalendarFeedDemo in the JAVA package of the Google Data API client library, I've encounterd a exception like this
java -classpath "classes:lib/*" CalendarFeedDemo ...
0
votes
2answers
1k views
Can not get the Auth Token for GData After Authentication on App Engine
I would like to pull the Auth Token for the Gdata auth so that I can write to a google calendar. I am having issues getting the token after authentication so that I can send the token to the calendar ...
2
votes
4answers
271 views
GData for my own API?
Im currently planning to build an API for my service. I want to use GData because it fits the application scheme and there are libraries for many programming languages available. The first question ...
1
vote
2answers
535 views
What is a GDATA extension profile?
I want to get the XML in atom format of a GoogleDocs spreadsheet using the [generateAtom(..,..)][1] method of the class BaseEntry which a SpreadsheetEntry inherits. But I don't understand the the ...
4
votes
3answers
4k views
Google App Engine cannot find gdata module
I can run a simple "Hello World" Google App Engine application on localhost with no problems. However, when I add the line "import gdata.auth" to my Python script I get "ImportError: No module named ...