You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/service/wechatoffice/auth.code2_session.go

35 lines
1.3 KiB

3 years ago
package wechatoffice
import (
"encoding/json"
"fmt"
"net/http"
3 years ago
)
type AuthCode2SessionResponse struct {
3 years ago
OpenId string `json:"openid"` // 用户唯一标识
SessionKey string `json:"session_key"` // 会话密钥
Unionid string `json:"unionid"` // 用户在开放平台的唯一标识符,若当前小程序已绑定到微信开放平台帐号下会返回
Errcode string `json:"errcode"` // 错误码
Errmsg string `json:"errmsg"` // 错误信息
}
type AuthCode2SessionResult struct {
Result AuthCode2SessionResponse // 结果
3 years ago
Body []byte // 内容
Err error // 错误
}
3 years ago
func NewAuthCode2SessionResult(result AuthCode2SessionResponse, body []byte, err error) *AuthCode2SessionResult {
return &AuthCode2SessionResult{Result: result, Body: body, Err: err}
}
func (app *App) AuthCode2Session(jsCode string) *AuthCode2SessionResult {
// 请求
body, err := app.request(fmt.Sprintf("https://api.weixin.qq.com/sns/jscode2session?appid=%s&secret=%s&js_code=%s&grant_type=authorization_code", app.AppId, app.AppSecret, jsCode), map[string]interface{}{}, http.MethodGet)
// 定义
var response AuthCode2SessionResponse
err = json.Unmarshal(body, &response)
return NewAuthCode2SessionResult(response, body, err)
3 years ago
}