提交 dd71d64a 编写于 作者: 雪洛's avatar 雪洛

docs: univerify

上级 0e50af51
......@@ -343,7 +343,7 @@ xhr.send(JSON.stringify({
云函数代码:
```js
// 下面仅展示客户端使用post方式发送content-type为application/json请求的场景
module.exports = async(event) => {
exports.main = async(event) => {
let body = event.body
if(event.isBase64Encoded) {
body = Buffer.from(body,'base64')
......@@ -406,7 +406,7 @@ const sign = hmac.digest('hex')
```js
// 云函数验证签名,此示例中以接受GET请求为例作演示
const crypto = require('crypto')
module.exports = async(event) => {
exports.main = async(event) => {
const secret = 'your-secret-string' // 自己的密钥不要直接使用示例值,且注意不要泄露
const hmac = crypto.createHmac('sha256', secret);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册