package com.moral.api.utils;
|
|
|
|
|
import java.util.HashMap;
|
import java.util.Map;
|
|
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSONObject;
|
|
public class WechatUtils {
|
|
public static final String APPID = "yyyy";
|
public static final String SECRET = "yyyy";
|
|
|
public static JSONObject getSessionKeyOrOpenId(String code) {
|
String requestUrl = "https://api.weixin.qq.com/sns/jscode2session";
|
Map<String, String> requestUrlParam = new HashMap<>();
|
// https://mp.weixin.qq.com/wxopen/devprofile?action=get_profile&token=164113089&lang=zh_CN
|
//小程序appId
|
requestUrlParam.put("appid", APPID);
|
//小程序secret
|
requestUrlParam.put("secret",SECRET);
|
//小程序端返回的code
|
requestUrlParam.put("js_code", code);
|
//默认参数
|
requestUrlParam.put("grant_type", "authorization_code");
|
//发送post请求读取调用微信接口获取openid用户唯一标识
|
JSONObject jsonObject = JSON.parseObject(HttpClientUtil.doPost(requestUrl, requestUrlParam));
|
return jsonObject;
|
}
|
}
|