Sup*_*Man 3 python python-2.7 google-drive-api
我刚刚开始尝试使用 Google Drive API。使用快速入门指南设置身份验证,我可以打印我的文件列表,甚至可以制作副本。一切都很好,但是我在尝试访问 Drive 上的文件中的数据时遇到了问题。特别是,我试图获得一个WebViewLink,但是当我打电话时,.get我只收到一个几乎没有任何文件元数据的小字典。该文档使其看起来所有数据默认都应该在那里,但它没有出现。我找不到任何方法来标记请求任何其他信息。
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
service = discovery.build('drive', 'v3', http=http)
results = service.files().list(fields="nextPageToken, files(id, name)").execute()
items = results.get('files', [])
if not items:
print('No files found.')
else:
print('Files:')
for item in items:
print(item['name'], item['id'])
if "Target File" in item['name']:
d = service.files().get(fileId=item['id']).execute()
print(repr(d))
Run Code Online (Sandbox Code Playgroud)
这是上面代码的输出:(格式是我做的)
{u'mimeType': u'application/vnd.google-apps.document',
u'kind': u'drive#file',
u'id': u'1VO9cC8mGM67onVYx3_2f-SYzLJPR4_LteQzILdWJgDE',
u'name': u'Fix TVP Licence Issues'}
Run Code Online (Sandbox Code Playgroud)
对于那些对代码感到困惑的人来说,缺少一些只是get_credentialsAPI快速入门页面中的基本功能以及一些常量和导入。为了完整起见,这里是我的代码中未修改的所有内容:
from __future__ import print_function
import httplib2
import os
from apiclient import discovery
import oauth2client
from oauth2client import client
from oauth2client import tools
SCOPES = 'https://www.googleapis.com/auth/drive'
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Drive API Python Quickstart'
try:
import argparse
flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()
except ImportError:
flags = None
def get_credentials():
"""Gets valid user credentials from storage.
If nothing has been stored, or if the stored credentials are invalid,
the OAuth2 flow is completed to obtain the new credentials.
Returns:
Credentials, the obtained credential.
"""
home_dir = os.path.expanduser('~')
credential_dir = os.path.join(home_dir, '.credentials')
if not os.path.exists(credential_dir):
os.makedirs(credential_dir)
credential_path = os.path.join(credential_dir,
'drive-python-quickstart.json')
store = oauth2client.file.Storage(credential_path)
credentials = store.get()
if not credentials or credentials.invalid:
flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
flow.user_agent = APPLICATION_NAME
if flags:
credentials = tools.run_flow(flow, store, flags)
else: # Needed only for compatibility with Python 2.6
credentials = tools.run(flow, store)
print('Storing credentials to ' + credential_path)
return credentials
Run Code Online (Sandbox Code Playgroud)
那么缺少什么,我怎样才能让 API 返回所有那些现在没有出现的额外元数据?
小智 5
你很亲近。对于较新版本的Drive API v3,要检索其他元数据属性,您必须添加fields参数以指定要包含在部分响应中的其他属性。
在您的情况下,由于您要检索WebViewLink属性,因此您的请求应类似于以下内容:
results = service.files().list(
pageSize=10,fields="nextPageToken, files(id, name, webViewLink)").execute()
Run Code Online (Sandbox Code Playgroud)
要从响应中显示您的项目:
for item in items:
print('{0} {1} {2}'.format(item['name'], item['id'], item['webViewLink']))
Run Code Online (Sandbox Code Playgroud)
我还建议您使用API Explorer 进行尝试,以便您可以查看希望在响应中显示的其他元数据属性。
祝你好运,希望这能帮到你 !:)
| 归档时间: |
|
| 查看次数: |
2719 次 |
| 最近记录: |