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/wechatminiprogram/sns.jscode2session.go

37 lines
1.4 KiB

package wechatminiprogram
import (
"encoding/json"
"fmt"
"github.com/dtapps/go-library/utils/gohttp"
"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 // 内容
Http gohttp.Response // 请求
Err error // 错误
}
func NewSnsJsCode2sessionResult(result SnsJsCode2sessionResponse, body []byte, http gohttp.Response, err error) *SnsJsCode2sessionResult {
return &SnsJsCode2sessionResult{Result: result, Body: body, Http: http, Err: err}
}
func (app *App) SnsJsCode2session(jsCode string) *SnsJsCode2sessionResult {
// 请求
request, 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(request.Body, &response)
return NewSnsJsCode2sessionResult(response, request.Body, request, err)
}