1 Star 0 Fork 68

zdjkea/oauth2

forked from Lyric/oauth2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
generate.go 529 Bytes
一键复制 编辑 原始数据 按行查看 历史
Lyric 提交于 2016-08-05 14:56 . update comments
package oauth2
import "time"
type (
// GenerateBasic provide the basis of the generated token data
GenerateBasic struct {
Client ClientInfo
UserID string
CreateAt time.Time
}
// AuthorizeGenerate generate the authorization code interface
AuthorizeGenerate interface {
Token(data *GenerateBasic) (code string, err error)
}
// AccessGenerate generate the access and refresh tokens interface
AccessGenerate interface {
Token(data *GenerateBasic, isGenRefresh bool) (access, refresh string, err error)
}
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zdjkea/oauth2.git
[email protected]:zdjkea/oauth2.git
zdjkea
oauth2
oauth2
master

搜索帮助