2015-02-06 77 views
0

我能夠使用在谷歌API瀏覽器下面的請求提出請求:如何申請文件在谷歌驅動器

GET https://www.googleapis.com/drive/v2/files/asdf?key={YOUR_API_KEY} 

Authorization: Bearer ya29.EQEo6DJmR0Z-FngYc9nAL5iiidB8TBI7ysBDD6TARiqMtFjmMagLew0oC-vxj9HjojXjja46-5LSEQ 
X-JavaScript-User-Agent: Google APIs Explorer 

我怎麼會那麼做蟒蛇這一要求?我目前正試圖做到這一點:

api_key = '1122d' 
requests.get('https://www.googleapis.com/drive/v2/files/asdf?key=%s' % api_key) 

但是我得到了404.我該怎麼做這個請求?

回答

1

You have to authenticate your request。我會建議使用谷歌的Python客戶端刪除了很多的樣板:

pip install --upgrade google-api-python-client

從文檔:

from apiclient.discovery import build 

def build_service(credentials): 
    http = httplib2.Http() 
    http = credentials.authorize(http) 
    return build('drive', 'v2', http=http) 

然後使用該服務:

from apiclient import errors 
try: 
    service = build_service(### Credentials here ###) 
    file = service.files().get(fileId=file_id).execute() 

    print 'Title: %s' % file['title'] 
    print 'Description: %s' % file['description'] 
    print 'MIME type: %s' % file['mimeType'] 
except errors.HttpError, error: 
    if error.resp.status == 401: 
    # Credentials have been revoked. 
    # TODO: Redirect the user to the authorization URL. 
    raise NotImplementedError() 
+0

感謝您的回答。現在我已經安裝了,如何給我一個'api_key'和'file_id'下載文件? – David542 2015-02-06 00:22:36

+0

謝謝,請你舉一個例子來說明'service = build_service(### Credentials here ###)'這個行嗎? – David542 2015-02-06 00:38:59

相關問題