Google Cloud Platform:我如何获得签名的URL,以便使用Python将对象放入Google Cloud Store

时间:2019-01-03 12:53:36

标签: python google-cloud-platform google-cloud-storage google-api-client

我正在使用google-api-python-client,但是在仅将对象直接上传到Google Cloud Storage Bucket方面,如何在创建签名的PUT URL方面没有任何进展。关于如何使用最新版本的Google Python客户端获取签名URL的信息并不一致。

1 个答案:

答案 0 :(得分:4)

我使用了Google云存储库。我推荐它作为google支持的工具,并抽象出签名URL舞中的一些复杂性

首先获得证书 https://console.developers.google.com/

将证书保存到您的项目中

安装Google云库

pip install google-cloud-storage==1.9.0

导入generate_signed_url和google.storage,然后使用证书初始化存储客户端并访问存储桶

from google.cloud.storage._signing import generate_signed_url
from google.cloud import storage

client = storage.Client.from_service_account_json('path/to/certificate.json')

expiration = datetime.datetime.now() + datetime.timedelta(days=1)
API_ACCESS_ENDPOINT = 'https://storage.googleapis.com'
canonical_resource = bucketpath + "resource.jpeg"

url = generate_signed_url(
    client._credentials, resource=canonical_resource,
    api_access_endpoint=API_ACCESS_ENDPOINT,
    expiration=expiration, method="PUT",
    content_type="jpeg"
)
print(url)

完整文档 https://googleapis.github.io/google-cloud-python/latest/storage/client.html