yapi-plugin-o2
v1.1.5
Published
oauth2 plugin for yapi
Downloads
5
Readme
yapi-plugin-o2
第三方插件,基于 Oauth2 协议登录的简化模式。
{
"plugins": [
{
"name": "o2",
"options": {
// 客户端 id
"clientId": "your client id",
// 认证服务器
"authServer": "http://auth.server",
// 认证地址
"authPath": "/oauth/authorize",
// 获取用户信息地址
"infoPath": "/user/info",
// 用户字段名
"userKey": "usernamekey",
// 邮箱字段名
"emailKey": "emailkey",
// 默认邮箱
"emailPostfix": "@email.com",
// 登录按钮名称
"buttonName": "login"
}
}
]
}
使用注意:
- Oauth2 服务器用户信息需要提供:
email
和username
两个字段,如果字段名不一致,可以通过emailKey
和userKey
设置。