1 Star 0 Fork 15

opsfast/d3auth

forked from chunshand/d3auth
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
type.go 1.76 KB
一键复制 编辑 原始数据 按行查看 历史
chunshand 提交于 2018-12-12 11:21 . 11
package d3auth
// "encoding/json"
//基本配置
type Auth_conf struct {
Appid string
Appkey string
Rurl string
}
//@ qq 结构 ------------------------------------------------- start
type Auth_qq struct {
Conf *Auth_conf
}
type Auth_qq_err_res struct {
Error int `json:"error"`
Error_description string `json:"error_description"`
}
type Auth_qq_me struct {
Client_ID string `json:"client_id"`
OpenID string `json:"openid"`
}
//@ qq 结构 ------------------------------------------------- end
//@ weibo 结构 ------------------------------------------------- start
type Auth_wb struct {
Conf *Auth_conf
}
type Auth_wb_err_res struct {
Error int `json:"error_code"`
Error_description string `json:"error"`
}
type Auth_wb_succ_res struct {
Access_Token string `json:"access_token"`
Openid string `json:"uid"`
}
//@ weibo 结构 ------------------------------------------------- end
//@ weixin 结构 ------------------------------------------------- start
type Auth_wx struct {
Conf *Auth_conf
}
type Auth_wx_err_res struct {
Error int `json:"errcode"`
Error_description string `json:"errmsg"`
}
type Auth_wx_succ_res struct {
Access_Token string `json:"access_token"`
Openid string `json:"openid"`
}
//@ weixin 结构 ------------------------------------------------- end
//@ github 结构 ------------------------------------------------- start
type Auth_github struct {
Conf *Auth_conf
}
type Auth_github_err_res struct {
Error int `json:"errcode"`
Error_description string `json:"errmsg"`
}
type Auth_github_succ_res struct {
Access_Token string `json:"access_token"`
Openid string `json:"openid"`
}
//@ github 结构 ------------------------------------------------- end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/opsfast/d3auth.git
[email protected]:opsfast/d3auth.git
opsfast
d3auth
d3auth
master

搜索帮助