1 Star 0 Fork 0

vibly/wechat-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
endpoint.go 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
夏雨天 提交于 2023-05-12 08:37 . init
package oauth2
import (
"net/url"
"gitee.com/vibly/wechat-sdk/oauth2"
)
var _ oauth2.Endpoint = (*Endpoint)(nil)
// Endpoint 实现了 gitee.com/vibly/wechat-sdk/oauth2.Endpoint 接口.
type Endpoint struct {
AppId string
AppSecret string
}
func NewEndpoint(AppId, AppSecret string) *Endpoint {
return &Endpoint{
AppId: AppId,
AppSecret: AppSecret,
}
}
func (p *Endpoint) ExchangeTokenURL(code string) string {
return "https://api.weixin.qq.com/sns/oauth2/access_token?appid=" + url.QueryEscape(p.AppId) +
"&secret=" + url.QueryEscape(p.AppSecret) +
"&code=" + url.QueryEscape(code) +
"&grant_type=authorization_code"
}
func (p *Endpoint) RefreshTokenURL(refreshToken string) string {
return "https://api.weixin.qq.com/sns/oauth2/refresh_token?appid=" + url.QueryEscape(p.AppId) +
"&grant_type=refresh_token&refresh_token=" + url.QueryEscape(refreshToken)
}
func (p *Endpoint) SessionCodeUrl(code string) string {
return "https://api.weixin.qq.com/sns/jscode2session?appid=" + url.QueryEscape(p.AppId) +
"&secret=" + url.QueryEscape(p.AppSecret) +
"&js_code=" + url.QueryEscape(code) +
"&grant_type=authorization_code"
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/vibly/wechat-sdk.git
git@gitee.com:vibly/wechat-sdk.git
vibly
wechat-sdk
wechat-sdk
v1.0.0

搜索帮助

0d507c66 1850385 C8b1a773 1850385