服务器端谷歌 API 服务请求产生 googleapiclient.errors.HttpError: <HttpError 404

Ell*_*otB 5 oauth google-api google-drive-api service-accounts google-sheets-api

我已经创建了服务账户凭证,并在 AWS 实例上运行了我的代码。代码是:

from google.oauth2 import service_account
SCOPES = [ 'https://www.googleapis.com/auth/spreadsheets https://www.googleapis.com/auth/drive' ]
SERVICE_ACCOUNT_FILE = 'serviceAccount.json'
APPLICATION_NAME = 'app name'

credentials = service_account.Credentials.from_service_account_file(
          SERVICE_ACCOUNT_FILE, scopes=SCOPES)
    drive_service = discovery.build('drive', 'v2', credentials=credentials)

    settings = configparser.ConfigParser()
    settings._interpolation = configparser.ExtendedInterpolation()
    settings.read('caremarkets.ini')
    origin_file_id = settings.get('GoogleSheetParams',''+manualType+'Manual2018')
    folderId = settings.get('GoogleSheetParams',''+manualType+'FolderID')
    timeStamp = '{:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now())
    title = manualType+ " Userid: ( "+str(user_id)+" ) "+timeStamp

    fileObject= drive_service.files().copy(
          fileId=origin_file_id, body={"parents": [{"kind": "drive#fileLink",
                                 "id": folderId}], 'title': title}).execute()
Run Code Online (Sandbox Code Playgroud)

但是这是我的错误:第 41 行是上面代码片段中的服务调用:

fileObject= drive_service.files().copy(
      fileId=origin_file_id, body={"parents": [{"kind": "drive#fileLink",
                             "id": folderId}], 'title': title}).execute()
Run Code Online (Sandbox Code Playgroud)


File "/home/ubuntu/dev_deploy/copy_master_spreadsheet_to_user_slave.py", line 41, in copy_master_spreadsheet_to_user_slave
    "id": folderId}], 'title': title}).execute()
File "/usr/local/lib/python3.5/dist-packages/oauth2client/_helpers.py", line 133, in positional_wrapper
    return wrapped(*args, **kwargs)
File "/usr/local/lib/python3.5/dist-packages/googleapiclient/http.py", line 844, in execute
    raise HttpError(resp, content, uri=self.uri)
googleapiclient.errors.HttpError: <HttpError 404 when requesting https://www.googleapis.com/drive/v2/files/1lNcqvQACH6DOBl3uQywJO1A6Iy6va7YdSrZiobMaOj0/copy?alt=json returned "File not found: 1lNcqvQACH6DOBl3uQywJO1A6Iy6va7YdSrZiobMaOj0">
Run Code Online (Sandbox Code Playgroud)

请注意,上面的代码可以在我的机器上本地正常工作。在我更改代码以使用服务帐户而不是通常的 client_secret.json 后才得到这个

有关服务帐户密钥的信息:

Service account name    Service account ID                                       Key ID                                         Key creation date   Options 
SACxxxxxxs              sacxxxxxxs@drivesheets-197604.iam.gserviceaccount.com    bf287f0baa29d4fa5f6b98aacf03b8bff13b0447       Mar 15, 2018
Run Code Online (Sandbox Code Playgroud)

非常感谢如果你能帮忙

DaI*_*mTo 4

文件未找到意味着您提供的文件 ID 不存在,或者您通过身份验证的用户无权访问该文件。

获取服务帐户电子邮件地址,然后转到网络版 Google 云端硬盘,与服务帐户共享文件。然后它将可以访问有问题的文件。