微信小程序获取手机号码 phonenumber.getPhoneNumber 提示47001错误
微信小程序获取客户端手机号码,踩的坑。如下提示:
{"errcode":47001,"errmsg":"data format error hint: [6kMDxSDNRa-hAwqia] rid: 6308d1b5-69935bc9-1d99d19f"}
经过测试,文档说的是body 类型 实际却是json类型
正确代码如下:
public static String getWxPhone(String code,String appid,String appSecret) {
String url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="+appid+"&secret="+appSecret;
String resultString = HttpUtil.get(url);
if (!StringUtils.isEmpty(resultString)) {
JSONObject json = JSONObject.parseObject(resultString);
String accessToken = json.getString("access_token");
String phoneUrl="https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token="+accessToken;
Map<String, Object> map = new LinkedHashMap<>();
map.put("code",code);
String res = HttpUtil.post(phoneUrl,JSONObject.toJSONString(map));
JSONObject phoneJson = JSONObject.parseObject(res);
if("0".equals( phoneJson.get("errcode").toString())){
String phoneInfo = phoneJson.get("phone_info").toString();
JSONObject phoneInfojson = JSONObject.parseObject(phoneInfo);
return phoneInfojson.get("phoneNumber").toString();
}
} else {
throw new RuntimeException("返回值为空,请检查请求报文或者请求地址是否正确");
}
return null;
}
文章来源:https://www.toymoban.com/news/detail-737421.html
文章来源地址https://www.toymoban.com/news/detail-737421.html
到了这里,关于微信小程序获取手机号码 phonenumber.getPhoneNumber 提示47001错误的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!