我正在使用 google storage Signed URL v4 通过具有到期时间的 URL 访问文件,但我还想指定域以限制 URL 以访问 Internet 上的任何地方。现在 google 在 Signed URL 的配置中提供的选项较少。
我已经提到了这个文档:
- https://cloud.google.com/storage/docs/access-control/signing-urls-manually
- https://cloud.google.com/storage/docs/access-control/signing-urls-with-helpers
读取访问的示例代码:
// These options will allow temporary read access to the file
const options = {
version: 'v4',
action: 'read',
expires: Date.now() + 15 * 60 * 1000, // 15 minutes
};
是否有可能提及我的主机名/域名以限制文件访问?或如何仅在特定网站中访问我的存储文件?