Google API错误-凭据文件不存在

时间:2019-03-20 11:20:44

标签: python google-api

我很难尝试使用API​​文档中提供的代码连接到Google Drive API。我想读取我的Google驱动器中的文件。

这是我正在使用的代码

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

凭据文件在我的工作目录中:

import os
path = os.path.abspath('credentials.json')
path
#path#
'/Users/emmanuelmac/credentials.json'

已经阅读过Google Drive API,不确定我在做什么错

这是我的回溯:

---------------------------------------------------------------------------
FileNotFoundError                         Traceback (most recent call last)
<ipython-input-26-053e36207d0e> in <module>()
     46 
     47 if __name__ == '__main__':
---> 48     main()

<ipython-input-26-053e36207d0e> in main()
     25         else:
     26             flow = InstalledAppFlow.from_client_secrets_file(
---> 27                 'credentials.json', SCOPES)
     28             creds = flow.run_local_server()
     29         # Save the credentials for the next run

~/anaconda3/lib/python3.6/site-packages/google_auth_oauthlib/flow.py in from_client_secrets_file(cls, client_secrets_file, scopes, **kwargs)
    169             Flow: The constructed Flow instance.
    170         """
--> 171         with open(client_secrets_file, 'r') as json_file:
    172             client_config = json.load(json_file)
    173 

FileNotFoundError: [Errno 2] No such file or directory: 'credentials.json'

0 个答案:

没有答案