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

docs: update uni-id config.json

上级 96a2aca7
...@@ -57,40 +57,49 @@ ...@@ -57,40 +57,49 @@
+ `tokenExpiresIn`token有效期,以秒为单位 + `tokenExpiresIn`token有效期,以秒为单位
+ `passwordErrorLimit`密码错误重试次数,分ip记录密码错误次数,达到重试次数之后等待`passwordErrorRetryTime`时间之后才可以重试 + `passwordErrorLimit`密码错误重试次数,分ip记录密码错误次数,达到重试次数之后等待`passwordErrorRetryTime`时间之后才可以重试
+ `passwordErrorRetryTime`单位为秒 + `passwordErrorRetryTime`单位为秒
+ 如果使用`sendSmsCode`接口发送短信需要配置service,如果使用其他方式发送短信可以参考`sendSmsCode`接口的实现[uni-id sendSmsCode](https://gitee.com/dcloud/uni-id/blob/master/src/lib/send-sms-code.js) + 如果使用`sendSmsCode`接口发送短信需要前往[https://dev.dcloud.net.cn/uniSms](https://dev.dcloud.net.cn/uniSms)充值短信额度,配置`config.json``service`字段,字段说明见下方示例
+ 如果使用其他方式发送短信可以参考`sendSmsCode`接口的实现[uni-id sendSmsCode](https://gitee.com/dcloud/uni-id/blob/master/src/lib/send-sms-code.js)
+ 另外可以按照客户端平台进行不同的配置,参考下面示例 + 另外可以按照客户端平台进行不同的配置,参考下面示例
```json ```json
// 如果拷贝此内容切记去除注释 // 如果拷贝此内容切记去除注释
{ {
"passwordSecret": "passwordSecret-demo", // 用于加密用户密码 "passwordSecret": "passwordSecret-demo",
"tokenSecret": "tokenSecret-demo", // 用于生成token "tokenSecret": "tokenSecret-demo",
"tokenExpiresIn": 7200, // token过期时间 "tokenExpiresIn": 7200,
"passwordErrorLimit": 6, // 同一个ip密码错误最大重试次数 "passwordErrorLimit": 6,
"passwordErrorRetryTime": 3600, // 超过密码重试次数之后的等待时间 "passwordErrorRetryTime": 3600,
"service": { "app-plus": {
"sms": { "tokenExpiresIn": 2592000,
"name": "DCloud", // 应用名称对应uniCloud.sendSms的data参数内的name "oauth": {
"codeExpiresIn": 180, // 验证码过期时间,单位:秒,只可取60的整数倍,不填此参数时会取默认值180 "weixin": {
"smsKey": "your sms key", // 短信密钥key "appid": "weixin appid",
"smsSecret": "your sms secret" // 短信密钥secret "appsecret": "weixin appsecret"
}
} }
}, },
"mp-weixin":{ "mp-weixin": {
"oauth":{ "oauth": {
"weixin": { "weixin": {
"appid": "your mp-weixin appid", // 微信小程序appid "appid": "weixin appid",
"appsecret": "your mp-weixin appsecret", // 微信小程序appsecret "appsecret": "weixin appsecret"
} }
} }
}, },
"app-plus": { "mp-alipay": {
"tokenExpiresIn": 2592000, // App平台token过期时间 "oauth": {
"oauth":{ "alipay": {
"weixin": { "appid": "alipay appid",
"appid": "your app-weixin appid", // app平台对应的微信开放平台appid "privateKey": "alipay privateKey"
"appsecret": "your app-weixin appsecret", // app平台对应的微信开放平台appsecret }
} }
},
"service": {
"sms": {
"name": "your app name", // 应用名称,对应短信模版的name
"codeExpiresIn": 180, // 验证码过期时间,单位为秒,注意一定要是60的整数倍
"smsKey": "your sms key", // 短信密钥key,开通短信服务处可以看到
"smsSecret": "your sms secret" // 短信密钥secret,开通短信服务处可以看到
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册