package wechatoffice import ( "encoding/json" "fmt" "net/http" ) type SnsJsCode2sessionResponse struct { OpenId string `json:"openid"` // 用户唯一标识 SessionKey string `json:"session_key"` // 会话密钥 Unionid string `json:"unionid"` // 用户在开放平台的唯一标识符,若当前小程序已绑定到微信开放平台帐号下会返回 Errcode string `json:"errcode"` // 错误码 Errmsg string `json:"errmsg"` // 错误信息 } type SnsJsCode2sessionResult struct { Result SnsJsCode2sessionResponse // 结果 Body []byte // 内容 Err error // 错误 } func NewSnsJsCode2sessionResult(result SnsJsCode2sessionResponse, body []byte, err error) *SnsJsCode2sessionResult { return &SnsJsCode2sessionResult{Result: result, Body: body, Err: err} } func (app *App) SnsJsCode2session(jsCode string) *SnsJsCode2sessionResult { // 请求 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 SnsJsCode2sessionResponse err = json.Unmarshal(body, &response) return NewSnsJsCode2sessionResult(response, body, err) }