1 Star 0 Fork 1

可乐烛光烟/go-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
phone.go 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
可乐烛光烟 提交于 2022-11-09 00:21 . Initial commit
/*
* @Author: i@rysa.cn
* @Date: 2022-05-14 16:07:17
* @LastEditTime: 2022-05-14 16:07:28
* @LastEditors: i@rysa.cn
* @Description:获取手机号
* @FilePath: \go-utils\wechat\mini\sns\phone.go
*/
package sns
import (
"encoding/json"
"fmt"
"gitee.com/rysa/go-utils/request"
accesstoken "gitee.com/rysa/go-utils/wechat/mini/access_token"
"gitee.com/rysa/go-utils/wechat/mini/params"
)
func (s *sns) GetUserPhone(code string) params.PhoneResult {
token, err := accesstoken.NewAccessToken(s.MiniConfig).GetAccessToken()
if err != nil {
return params.PhoneResult{
Errcode: -1,
Errmsg: err.Error(),
}
}
url := fmt.Sprintf("https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token=%s", token)
req := request.NewRequest()
req.SetBody(map[string]string{
"code": code,
})
res, err := req.Post(url)
fmt.Println(res.String())
if err != nil {
return params.PhoneResult{
Errcode: -1,
Errmsg: err.Error(),
}
}
var rs params.PhoneResult
json.Unmarshal(res.Body(), &rs)
return rs
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rysa/go-utils.git
git@gitee.com:rysa/go-utils.git
rysa
go-utils
go-utils
v1.0.10

搜索帮助