使用Python,我无法访问Google Drive API v3中的共享驱动器文件夹

3
我可以获取我的网盘文件夹,但是无法访问通过Google Drive API共享的文件夹。这是我的代码(与此处的指南代码几乎相同)。
我按照指南完成了“启用Drive API”,在VScode上执行了pip命令,并将credentials.json放入工作目录中。
(我没有收到任何错误消息,只得到了我的网盘文件名列表或者代码打印的“未找到文件”)。
from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request

# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/drive.metadata.readonly']

def main():
    """Shows basic usage of the Drive v3 API.
    Prints the names and ids of the first 10 files the user has access to.
    """
    creds = None
    # The file token.pickle stores the user's access and refresh tokens, and is
    # created automatically when the authorization flow completes for the first
    # time.
    if os.path.exists('token.pickle'):
        with open('token.pickle', 'rb') as token:
            creds = pickle.load(token)
    # If there are no (valid) credentials available, let the user log in.
    if not creds or not creds.valid:
        if creds and creds.expired and creds.refresh_token:
            creds.refresh(Request())
        else:
            flow = InstalledAppFlow.from_client_secrets_file(
                'credentials.json', SCOPES)
            creds = flow.run_local_server(port=0)
        # Save the credentials for the next run
        with open('token.pickle', 'wb') as token:
            pickle.dump(creds, token)

    service = build('drive', 'v3', credentials=creds)

    # Call the Drive v3 API
    results = service.files().list(
        pageSize=10, fields="nextPageToken, files(id, name)").execute()
    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(u'{0} ({1})'.format(item['name'], item['id']))

if __name__ == '__main__':
    main()

我没有得到错误,只有代码打印的“未找到文件”提示。 - yuki ueda
1个回答

11
请注意,API中有includeItemsFromAllDrives参数,以确定共享驱动器项是否显示在结果中。
Python API V3包装器也在其列表方法实现中包含了此参数,在调用list()方法时需要包含它:
...

    service = build('drive', 'v3', credentials=creds)

    # Call the Drive v3 API
    results = service.files().list(
        pageSize=10, includeItemsFromAllDrives=True, supportsAllDrives=True, fields="nextPageToken, files(id, name)").execute()
    items = results.get('files', [])

...

这是另一个有关文档的链接 实现共享驱动器支持 - Linda Lawton - DaImTo
我遇到了一个错误。 ~ 返回了“未将supportsAllDrives参数设置为true”。细节:“未将supportsAllDrives参数设置为true”。 - yuki ueda
我已根据情况编辑了答案。测试 API 调用的一个快速提示是使用此处的“尝试此 API”,根据要使用的相关参数构建请求以查看您获得的响应,然后使用 Python 的 Drive API list() 方法 构建具有相关参数的请求等效项。 - Daniel Ocando

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接