Google 使用您自己的程序而不是使用 google 云库创建签名 Url 的存储

Google Storage creating Signed Urls with your own program rather using google cloud libraries

Google 存储允许使用自定义创建的已签名 urls,如以下 link 中所述:V4 signing process with your own program

这是什么原因?这会比为 google 存储中的每个对象请求签名 url 更快吗?

目的是提供一种签署 URL 的方法,而不需要提供的云存储客户端库之一。由于它是一个休息 API,您可以从任何您想要的可以发出 HTTP 请求和执行 RSA 签名的语言调用它。从您链接的那个页面:

This page describes an algorithm for implementing the V4 signing process so that you can create Cloud Storage RSA key signed URLs in your own workflow, using a programming language of your choice.

显示的示例在 python 中,但文本明确表示:

The sample uses the Python programming language, but does not use the Cloud Storage Client Libraries: