这期内容当中小编将会给大家带来有关使用Golang怎么通过小程序获取微信openid,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
创新互联总部坐落于成都市区,致力网站建设服务有成都做网站、网站设计、网络营销策划、网页设计、网站维护、公众号搭建、小程序设计、软件开发等为企业提供一整套的信息化建设解决方案。创造真正意义上的网站建设,为互联网品牌在互动行销领域创造价值而不懈努力!小程序获取 openid 的流程
那么小程序获取 openid 的流程具体如下
我们需要在小程序中调用 wx.login() 获取 code 码,然后将这个 code 码发送给后端,后端带着这个 code 码和 appid,appsecret 向微信接口发起 http 请求获取 openid。
注意事项
在开发的小程序中的 AppID 一定要和后端使用的 AppID 保持一致,否则会获取 openid 失败
我们请求的微信 API 为 auth.code2Session ,
请求地址为:
GET https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
所需的四个参数为:
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
appid | string | 是 | 小程序 appId | |
secret | string | 是 | 小程序 appSecret | |
js_code | string | 是 | 登录时获取的 code | |
grant_type | string | 是 | 授权类型,此处只需填写 authorization_code |
js_code 就是我们通过 wx.login 得到的 code,grant_type 为 authorization_code,只剩下 appid 和 secret 需要我们登录微信公总平台 里面找
小程序代码演示
为了方便操作,我们在 index 页面编写了一个 button,通过 button 触发事件
然后编写事件函数:
//index.js Page({ onGetOpenId() { wx.login({ success: res => { if (res.code) { wx.request({ url: "http://localhost:2020/openid", method: "POST", data: { code: res.code }, success: res => { console.log(res); } }); } } }); } });
那么,在小程序中发送 http 请求强制要求地址必须为 https,由于我们在开发中,我们可以把强制 https 的设置关闭
Go 语言后端代码演示
小程序发过来的数据和去微信 API 获取的数据都是放在 http body 里,所以我们要从 body 获取
package main import ( "encoding/json" "fmt" "net/http" ) func main() { http.HandleFunc("/openid", getOpenID) http.ListenAndServe(":2020", nil) } func getOpenID(writer http.ResponseWriter, request *http.Request) { if request.Method != http.MethodPost { return } var codeMap map[string]string err := json.NewDecoder(request.Body).Decode(&codeMap) if err != nil { return } defer request.Body.Close() code := codeMap["code"] openid, err := sendWxAuthAPI(code) if err != nil { return } fmt.Println("my openid", openid) } const ( code2sessionURL = "https://api.weixin.qq.com/sns/jscode2session?appid=%s&secret=%s&js_code=%s&grant_type=authorization_code" appID = "你的AppID" appSecret = "你的AppSecret" ) func sendWxAuthAPI(code string) (string, error) { url := fmt.Sprintf(code2sessionURL, appID, appSecret, code) resp, err := http.DefaultClient.Get(url) if err != nil { return "", err } var wxMap map[string]string err = json.NewDecoder(resp.Body).Decode(&wxMap) if err != nil { return "", err } defer resp.Body.Close() return wxMap["openid"], nil }
运行结果
运行代码,在小程序中点击:
结果:
上述就是小编为大家分享的使用Golang怎么通过小程序获取微信openid了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注创新互联成都网站设计公司行业资讯频道。
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。