代码拉取完成,页面将自动刷新
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
//@ gitee 结构 ------------------------------------------------- start
type Auth_gitee struct {
Conf *Auth_conf
}
type Auth_gitee_err_res struct {
Error int `json:"errcode"`
Error_description string `json:"errmsg"`
}
type Auth_gitee_succ_res struct {
Access_Token string `json:"access_token"`
}
//@ gitee 结构 ------------------------------------------------- end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。