1、接口规范
小程序接口调用凭证auth.getAccessToken接口规范参考链接
1.1、接口请求地址
GET https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
1.2、接口请求参数
appid
:小程序 appIdsecret
:小程序 appSecretgrant_type
:授权类型,填写 client_credential
1.3、接口响应参数(返回的 JSON 数据包)
access_token
:获取到的凭证expires_in
:凭证有效时间,单位:秒。目前是7200秒之内的值。errcode
:错误码***(异常情况才会有错误码返回,正常是没有该字段返回的)***errmsg
:错误信息文章来源:https://www.toymoban.com/news/detail-610672.html
2、准备工作
需要准备请求接口的2个参数:appid
:小程序 appId,需要小程序注册申请流程获得;secret
:小程序 appSecret,需要在小程序开发配置选项里面经由管理员扫码授权生成;文章来源地址https://www.toymoban.com/news/detail-610672.html
3、代码
//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失败");
}
到了这里,关于微信小程序接口调用凭证(获取token)auth.getAccessToken接口开发的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!