Tagged Questions
0
votes
0answers
74 views
Saving local changes to remote Google drive speadsheet
Hi I have a simple app written in Python and Google Drive API v2
That suppose to download a spreadsheet (a Google form, but any would do really)
It downloads and changes it fine but fails during the ...
0
votes
1answer
164 views
Store access token from Google OAuth 2.0 to access drive data from application account
I am able to execute quickstart.py for Google Drive using python. But how do we store the token and use it again - again for the same user without prompting user. Is their some way i can map user ...
2
votes
0answers
104 views
Insert permissions via a batch request with Google APIs Client Library for Python
I'm starting with the Google APIs Client Library for Python. I'm developing with the Drive API. I'm migrating my web application from the deprecated Document List API v3 to Drive API V2.
When I add ...
1
vote
1answer
137 views
Download of HTML of native Google Drive documents does not work
I try to download Google Drive documents (with a Drive app) with this python function. it jumps every time to the # The file doesn't have any content stored on Drive part.
def download_file(service, ...
0
votes
0answers
139 views
Getting a unique user id from Google Drive Permision?
I would like to get a unique user id from Google Drive for a permission that can be used to share another file from another account? At the moment nothing is returned from the get permissions call ...
0
votes
1answer
206 views
“Invalid Credentials” when accessing Google Drive API
I'm developing an AppEngine application which lists files from my Google Drive using the Google Drive API. I'm getting an 500 error when one of my users tries to run my app:
HttpError: ...
0
votes
2answers
384 views
Google Drive Python API resumable upload error 401 after 2 hours
First of all, I'm sorry if this is a too silly question... this is the first time I'm trying to use any of the technologies involved in this script (Python, the drive api, oauth 2.0, etc). I swear ...
0
votes
1answer
165 views
“AccessTokenRefreshError: Invalid Response 403” from oauth2client
I am creating a script that will download all files for a particular Google Apps user by using a service account that is impersonates that user (using the Python template code provided here (see code ...
0
votes
1answer
229 views
Correct usage of resumable upload with the python client library
I am a bit confused about the resumable upload to google drive and I am hoping if someone could be kind enough to clarify things a bit.
At this page:
...
4
votes
1answer
104 views
Are there published specs for Google API bandwidth?
I am developing a Google APP Engine or possibly just direct GCS application. The client captures video streams from cameras and would like to selectively stream these to the cloud.
Possible targets ...
1
vote
1answer
155 views
SSL Error with Python Google Drive API
i wrote a simple code, basically the same as the one on https://developers.google.com/drive/quickstart-python and every time after the first attempt i've the same error :
# Traceback (most recent ...
3
votes
2answers
199 views
How can I log in to an arbitrary user in appengine for use with the Drive SDK?
I have an application that needs to log into a singular Drive account and perform operations on the files automatically using a cron job. Initially, I tried to use the domain administrator login to do ...
2
votes
1answer
95 views
How can I use Google documents list APIs with the none-document files such as .jpeg .gif?
I'm now using gdata-python-client(Google document List API) to access my google drive on Terminal in Linux OS and I have problem to show the image files -- It's just show only the .doc .xls or .pdf ...
2
votes
1answer
125 views
How can one test appengine/drive/google api based applications?
There are several components involved in auth and the discovery based service api.
How can one test request handlers wrapped with decorators used from oauth2client (eg oauth_required, etc), ...
1
vote
2answers
906 views
Create a empty spreadsheet in google drive using google spreadsheet api (python )?
I want to create a empty spreadsheet(only with metadata) in google drive , when I refered the google SpreadSheet Api , it says to use the documents list api , but currently the document api is ...