GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
appid
:小程序 appId
secret
:小程序 appSecret
grant_type
:授权类型,填写 client_credential
access_token
:获取到的凭证
expires_in
:凭证有效时间,单位:秒。目前是7200秒之内的值。
errcode
:错误码***(异常情况才会有错误码返回,正常是没有该字段返回的)***
errmsg
:错误信息
需要准备请求接口的2个参数:
appid
:小程序 appId,需要小程序注册申请流程获得;
secret
:小程序 appSecret,需要在小程序开发配置选项里面经由管理员扫码授权生成;
//getWxAccessToken()方法用来将所有请求参数拼接起来形成最终的请求URL,可以在postman/apifox里面先行测通
//APP_ID=小程序 appId
//APP_SECRET=小程序 appSecret
String urlAccessToken = getWxAccessToken(APP_ID, APP_SECRET);
//发起请求
String respAccessToken = HttpUtil.get(urlAccessToken);
if(StringUtil.isNull(respAccessToken)){
throw new ServiceException("803","请求access_token失败");
}
//将响应转为Json对象
JSONObject respAccessTokenObj = JSONObject.parseObject(respAccessToken);
//获取accessToken
String accessToken = respAccessTokenObj.getString("access_token");
if(accessToken==null){
throw new ServiceException("804","获取access_token失败");
}