首页
学习
活动
专区
圈层
工具
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Google Drive API (python) -无法检索照片

确保您已经设置了Google Drive API并安装了google-api-python-client库。要安装库,请运行以下命令:

代码语言:javascript
复制
pip install --upgrade google-api-python-client google-auth-httplib2 google-auth-oauthlib

接下来,按照以下步骤编写Python代码以检索Google Drive上的照片:

  1. 导入库并设置API凭证:
代码语言:javascript
复制
import os.path
import google.auth
from google.oauth2 import service_account
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError

# 设置API凭证
SERVICE_ACCOUNT_FILE = 'path/to/your/credentials.json'
SCOPES = ['https://www.googleapis.com/auth/drive']

credentials = service_account.Credentials.from_service_account_file(
    SERVICE_ACCOUNT_FILE, scopes=SCOPES)
  1. 构建Google Drive API客户端:
代码语言:javascript
复制
api_service_name = 'drive'
api_version = 'v3'
drive_service = build(api_service_name, api_version, credentials=credentials)
  1. 编写用于检索照片的函数:
代码语言:javascript
复制
def get_photos_from_drive(folder_id):
    try:
        # 获取文件夹中的文件
        query = f"'{folder_id}' in parents and mimeType='image/*'"
        results = drive_service.files().list(q=query, fields="nextPageToken, files(id, name)").execute()
        items = results.get('files', [])

        if not items:
            print('No photos found.')
        else:
            print('Photos:')
            for item in items:
                print(f"{item['name']} ({item['id']})")
    except HttpError as error:
        print(f"An error occurred: {error}")
  1. 调用上述功能以检索照片:
代码语言:javascript
复制
folder_id = 'target_folder_id'
get_photos_from_drive(folder_id)

请确保将SERVICE_ACCOUNT_FILE设置为对应的凭据文件。同时, 请将folder_id设置为您想要检索照片的文件夹ID。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

没有搜到相关的沙龙

领券