Tagged Questions
1
vote
0answers
53 views
Google Data API, how to authorize the ContactsClient with an access-token?
I am using Django-Social-Auth to login via OAuth2.0 successfully to Google.
Now I would like to retrieve the contacts, however I have a problem with authorizing my python client:
gd_client = ...
0
votes
0answers
23 views
Trouble using Googles Python Data Library
Totally newbie question here but I'm getting this error that is preventing me from using Google's Python Data Library. I know it's an install issue but can't figure out how to troubleshoot. Can ...
0
votes
2answers
317 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 ...
1
vote
1answer
197 views
Google Spreadsheets API Column Titles
I am using the Google Spreadsheets API in python, and I can't get the column headers for the ListView of a worksheet.
Does anyone know how to get those titles? I can only find the underscore ...
2
votes
1answer
92 views
Download a Google Sites page Content Feed using gdata-python-client
My final goal is import some data from Google Site pages.
I'm trying to use gdata-python-client (v2.0.17) to download a specific Content Feed:
self.client = ...
1
vote
1answer
314 views
Google Blogger API : AccessTokenRefreshError:invalid_grand message
I am using google-python-client-api for Blogger API (Service Account - OAuth).
This is my code (which is taken my tasks api example)
import httplib2
import pprint
import sys
from ...
1
vote
1answer
387 views
Google Sites API + OAuth2 (on Appengine)
I've been trying to make use of the Python Library to access the Google Sites API.
The first step requires a user to authorize our application, they recommend to use OAuth2 and they provide a ...
2
votes
2answers
541 views
Google Data/OAuth/AppEngine/Python - Properly Registering a Web Application
I'm creating a webapp with this combination of tools. I'm authenticating with App Engine in the following manner:
class googleLogin(webapp.RequestHandler):
def get(self):
callbackURL = ...
0
votes
2answers
89 views
Open Source Project. Please help if you have done ANYTHING in with python in google spreadsheets!
So I have written a class that makes it extremely easy to interface with either Excel or Gnumeric using Python, and would like to extend the class to include Google Spreadsheets as well. I could do ...
2
votes
1answer
245 views
Parsing atom response from InsertCalendar in Python on GAE (Calendar API)
Using the GData Calendar API via App Engine in Python, when you create an event there are handy little helper methods to parse the response:
new_event = calendar_service.InsertEvent(event, ...
1
vote
1answer
61 views
Python GData lib causes too much redirects
I'm using python GData to work with Google Calendar. I'm making really simple requests (e.g. create event), using OAuth authorization.
Usually this works OK, but sometimes I'm receiving lots of 302 ...
0
votes
1answer
166 views
App Engine getRecord not returning content
In Google App Engine, I am trying to get a specific record and the content associated with it. I use the following (relevant) code (all necessary GData is imported and the client is authenticated):
...
0
votes
1answer
766 views
Sample python code for using Google books api
I m working on a library project where users can add books into their library. So I tried finding some sample code that will help me get started but could not find any. So I want to know how to use ...
6
votes
2answers
223 views
Google Data API on Symbian
I want to use Google Data API on a Symbian device with pys60 but I couldn't find any doc.
Is there any way to install Google Data APIs Python Client Library on Symbian ?
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 ...
3
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 ...
