Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
9d76ae08
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
9d76ae08
编写于
8月 03, 2020
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: update uni-id config.json
上级
96a2aca7
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
378 addition
and
369 deletion
+378
-369
docs/uniCloud/uni-id.md
docs/uniCloud/uni-id.md
+378
-369
未找到文件。
docs/uniCloud/uni-id.md
浏览文件 @
9d76ae08
...
@@ -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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录