gpt4 book ai didi

python - 使用 Google Drive 获取 WebViewLinks

转载 作者:太空宇宙 更新时间:2023-11-03 14:13:59 25 4
gpt4 key购买 nike

我刚刚开始尝试使用 Google Drive API。使用快速入门指南,我设置了身份验证,我可以打印我的文件列表,甚至可以复印。一切都很好,但是我在尝试从 Drive 上的文件访问数据时遇到了问题。特别是,我正在尝试获取 WebViewLink,但是当我调用 .get 时,我只收到一个几乎没有任何文件元数据的小字典。 The documentation使它看起来像默认情况下所有数据都应该存在,但它没有出现。我找不到任何方式来标记请求任何其他信息。

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))

这是上面代码的输出:(格式化是我做的)

{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'}

对于任何对代码感到困惑的人,有一些遗漏,这只是 API 的 quickstart page 中的基本 get_credentials 函数和一些常量和进口。为了完整起见,以下是我的代码中未修改的所有内容:

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

那么缺少什么,我怎样才能让 API 返回所有现在没有出现的额外元数据?

最佳答案

你们很亲近。使用更新版本的 Drive API v3 , 要检索其他元数据属性,您必须添加 fields 参数以指定要包含在部分响应中的其他属性。

在您的情况下,由于您正在寻找检索 WebViewLink 属性,因此您的请求应类似于以下内容:

results = service.files().list(
pageSize=10,fields="nextPageToken, files(id, name, webViewLink)").execute()

显示响应中的项目:

for item in items:
print('{0} {1} {2}'.format(item['name'], item['id'], item['webViewLink']))

我还建议尝试使用 API Explorer这样您就可以查看您希望在响应中显示的其他元数据属性。

祝您好运,希望对您有所帮助! :)

关于python - 使用 Google Drive 获取 WebViewLinks,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35044036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com