如何使用服务帐户将共享 google 驱动器中的文件移动到回收站
How to move a file in a shared google drive to trash using a service account
我使用的服务帐户是内容管理器。使用来自 python 的驱动器-api 将文件上传到共享驱动器没有问题。使用
service.files().list(q="name='file_name'", fields="files(id)").execute()
我从我的代码中获取 file_id。这个file_id是根据文件的link正确的
当我执行以下语句时:
response = service.files().update(fileId=file_id, body={'trashed': True}).execute()
我得到一个
404: file not found.
如何解决这个问题?使用我的个人帐户(也作为内容管理员)我可以毫无问题地删除文件。
要求
如果您清楚了解如何模拟帐户,则可以跳至Solution
步骤。
首先你需要一个service account
-
确保你是正确的calling the API
解决方案
默认情况下 Python Google Drive API client V3 不包含共享驱动器文件,这就是为什么您必须显式传递参数 supportsAllDrives
并将其设置为 True,在此之前您应该列出您的文件以便通过使用 includeItemsFromAllDrives
和 supportsAllDrives
了解 fileId 参数。下面是一个示例,用于列出所有驱动器中的所有文件以及如何使用服务帐户删除共享驱动器中的文件:
from googleapiclient.discovery import build
from google.oauth2 import service_account
SCOPES = ['https://www.googleapis.com/auth/drive']
SERVICE_ACCOUNT_FILE = './service_account_key.json'
credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
# Impersonate user@example.com account in my example.com domain
delegated_credentials = credentials.with_subject('user@example.com')
# Use the delegated credentials to impersonate the user
service = build('drive', 'v3', credentials=delegated_credentials)
# List all the files in your Drives (Shared Drives included)
results = service.files().list(fields="nextPageToken, files(id, name, trashed)", includeItemsFromAllDrives=True, supportsAllDrives=True).execute()
items = results.get('files', [])
if not items:
print('No files found.')
else:
print('Files:')
for item in items:
print(u'{0} ({1}) - Trashed? {2}'.format(item['name'], item['id'], item['trashed']))
# Use the filedId in order to trash your shared file
response = service.files().update(fileId=fileId, body={'trashed': True}, supportsAllDrives=True).execute()
print(response)
否则,如果您已经知道 fileId,只需使用 update
部分即可。
参考
Python Google Drive API client V3 > Update a file
Google Identity Platform > Impersonate a user by using a service account
我使用的服务帐户是内容管理器。使用来自 python 的驱动器-api 将文件上传到共享驱动器没有问题。使用
service.files().list(q="name='file_name'", fields="files(id)").execute()
我从我的代码中获取 file_id。这个file_id是根据文件的link正确的
当我执行以下语句时:
response = service.files().update(fileId=file_id, body={'trashed': True}).execute()
我得到一个
404: file not found.
如何解决这个问题?使用我的个人帐户(也作为内容管理员)我可以毫无问题地删除文件。
要求
如果您清楚了解如何模拟帐户,则可以跳至Solution
步骤。
首先你需要一个service account
确保你是正确的calling the API
解决方案
默认情况下 Python Google Drive API client V3 不包含共享驱动器文件,这就是为什么您必须显式传递参数 supportsAllDrives
并将其设置为 True,在此之前您应该列出您的文件以便通过使用 includeItemsFromAllDrives
和 supportsAllDrives
了解 fileId 参数。下面是一个示例,用于列出所有驱动器中的所有文件以及如何使用服务帐户删除共享驱动器中的文件:
from googleapiclient.discovery import build
from google.oauth2 import service_account
SCOPES = ['https://www.googleapis.com/auth/drive']
SERVICE_ACCOUNT_FILE = './service_account_key.json'
credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
# Impersonate user@example.com account in my example.com domain
delegated_credentials = credentials.with_subject('user@example.com')
# Use the delegated credentials to impersonate the user
service = build('drive', 'v3', credentials=delegated_credentials)
# List all the files in your Drives (Shared Drives included)
results = service.files().list(fields="nextPageToken, files(id, name, trashed)", includeItemsFromAllDrives=True, supportsAllDrives=True).execute()
items = results.get('files', [])
if not items:
print('No files found.')
else:
print('Files:')
for item in items:
print(u'{0} ({1}) - Trashed? {2}'.format(item['name'], item['id'], item['trashed']))
# Use the filedId in order to trash your shared file
response = service.files().update(fileId=fileId, body={'trashed': True}, supportsAllDrives=True).execute()
print(response)
否则,如果您已经知道 fileId,只需使用 update
部分即可。
参考
Python Google Drive API client V3 > Update a file
Google Identity Platform > Impersonate a user by using a service account