1 Star 0 Fork 68

alreal/oauth2

forked from kaiqing/oauth2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
const.go 753 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyric 提交于 2016-07-06 16:33 . Fixed some implement
package oauth2
// ResponseType 定义授权类型
type ResponseType string
const (
// Code 授权码类型
Code ResponseType = "code"
// Token 令牌类型
Token ResponseType = "token"
)
func (rt ResponseType) String() string {
return string(rt)
}
// GrantType 定义授权模式
type GrantType string
const (
// AuthorizationCodeCredentials 授权码模式
AuthorizationCodeCredentials GrantType = "authorization_code"
// PasswordCredentials 密码模式
PasswordCredentials GrantType = "password"
// ClientCredentials 客户端模式
ClientCredentials GrantType = "clientcredentials"
// RefreshCredentials 更新令牌模式
RefreshCredentials GrantType = "refreshtoken"
)
func (gt GrantType) String() string {
return string(gt)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/alreal/oauth2.git
[email protected]:alreal/oauth2.git
alreal
oauth2
oauth2
master

搜索帮助