Skip to content

Commit 8cbbb56

Browse files
committed
修改 demo
1 parent 0b1680e commit 8cbbb56

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

server/sts.js

+3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ var config = {
1414
allowPrefix: '_ALLOW_DIR_/*',
1515
// 简单上传和分片,需要以下的权限,其他权限列表请看 https://cloud.tencent.com/document/product/436/14048
1616
allowActions: [
17+
// 所有 action 请看文档 https://cloud.tencent.com/document/product/436/31923
18+
// 简单上传
1719
'name/cos:PutObject',
20+
// 分片上传
1821
'name/cos:InitiateMultipartUpload',
1922
'name/cos:ListMultipartUploads',
2023
'name/cos:ListParts',

server/sts.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
'region' => 'ap-guangzhou', // 换成 bucket 所在园区
1313
'durationSeconds' => 1800, // 密钥有效期
1414
'allowPrefix' => '*', // 必填,这里改成允许的路径前缀,这里可以根据自己网站的用户登录态判断允许上传的目录,例子:* 或者 a/* 或者 a.jpg
15-
// 密钥的权限列表。简单上传和分片需要以下的权限,其他权限列表请看 https://cloud.tencent.com/document/product/436/14048
15+
// 密钥的权限列表
1616
'allowActions' => array (
17+
// 所有 action 请看文档 https://cloud.tencent.com/document/product/436/31923
1718
// 简单上传
1819
'name/cos:PutObject',
1920
// 分片上传

0 commit comments

Comments
 (0)