何度も試していたらGoogleからメイルが来た。。このツールはless secure な認証なので それをオンにしてやらないと使えなくなったということらしい。。
たしかにユーザ名とパスワードだけだからなあ。。とりあえず出来てよかった。
技術系の備忘録.基本的に自分だけのためのものなので,詳しく書きません.検索でいらした方、すみません.
何度も試していたらGoogleからメイルが来た。。このツールはless secure な認証なので それをオンにしてやらないと使えなくなったということらしい。。
たしかにユーザ名とパスワードだけだからなあ。。とりあえず出来てよかった。
#!/usr/bin/python
import os
import sys
import httplib2
import pprint
from apiclient.discovery import build
from apiclient.http import MediaFileUpload
from oauth2client.client import OAuth2WebServerFlow
from apiclient import errors
def download_file(service, drive_file):
"""Download a file's content.
Args:
service: Drive API service instance.
drive_file: Drive File instance.
Returns:
File's content if successful, None otherwise.
"""
# download_url = drive_file['exportLinks']['text/csv']
download_url = 'https://docs.google.com/feeds/download/spreadsheets/Export?key=' + drive_file['id'] + '&exportFormat=csv'
if download_url:
resp, content = service._http.request(download_url)
if resp.status == 200:
# print 'Status: %s' % resp
return content
else:
print 'An error occurred: %s' % resp
return None
else:
# The file doesn't have any content stored on Drive.
return None
# Copy your credentials from the console
CLIENT_ID = 'XXXX'
CLIENT_SECRET = 'XXXXXXX'
#FILE_ID
FILE_ID = 'XXXXXXXX'
# Check https://developers.google.com/drive/scopes for all available scopes
OAUTH_SCOPE = 'https://www.googleapis.com/auth/drive'
# Redirect URI for installed apps
REDIRECT_URI = 'urn:ietf:wg:oauth:2.0:oob'
# Path to the file to upload
FILENAME = 'document.txt'
# Run through the OAuth flow and retrieve credentials
flow = OAuth2WebServerFlow(CLIENT_ID, CLIENT_SECRET, OAUTH_SCOPE,
redirect_uri=REDIRECT_URI)
authorize_url = flow.step1_get_authorize_url()
print 'Go to the following link in your browser: ' + authorize_url
os.system("open '" + authorize_url + "'")
code = raw_input('Enter verification code: ').strip()
credentials = flow.step2_exchange(code)
# Create an httplib2.Http object and authorize it with our credentials
http = httplib2.Http()
http = credentials.authorize(http)
drive_service = build('drive', 'v2', http=http)
drive_file = drive_service.files().get(fileId=FILE_ID).execute()
c = download_file(drive_service, drive_file)
f = open(sys.argv[1], 'w')
f.write(c)
f.close()