扫码入群,可获取一手资料和直播课程。
上一篇 微信公众号开发(二)—— 微信公众平台接入 让我们的本地工程顺利的接入到微信公众号系统,
那么接下啦我们介绍一个很重要的感念——acess_token
(access_token是公众号的全局唯一接口调用凭据,公众号调用各接口时都需使用access_token)
一、先来看看微信官方对它的定义:
二、access_token的特性
总结以上说明,access_token需要做到以下两点:
1.因为access_token有2个小时的时效性,要有一个机制保证最长2个小时重新获取一次。
2.因为接口调用上限每天2000次,所以不能调用太频繁。
好了有了上面的理解我们应该知道access_token 和access_token的特性
三、获取access_token的接口
接口说明:公众号可以使用AppID和AppSecret调用本接口来获取access_token。AppID和AppSecret可在“微信公众平台-开发-基本配置”页中获得(需要已经成为开发者,且帐号没有异常状态)。调用接口时,请登录“微信公众平台-开发-基本配置”提前将服务器IP地址添加到IP白名单中,点击查看设置方法,否则将无法调用成功。
接口调用请求说明
https请求方式: GET 注意这里是get请求 https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
参数说明:
参数 | 是否必须 | 说明 |
---|---|---|
grant_type | 是 | 获取access_token填写client_credential |
appid | 是 | 第三方用户唯一凭证 |
secret | 是 | 第三方用户唯一凭证密钥,即appsecret |
返回说明:
正常情况下,微信会返回下述JSON数据包给公众号:
{"access_token":"ACCESS_TOKEN","expires_in":7200}
四、将access_token添加到我们的项目中
1、先看看我们管理access_token的代码流程图
2 、登录测试平台获取appID和appsecret
3、代码
package com.quanlian.runner; import java.io.IOException; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; import org.springframework.stereotype.Component; import util.NetWorkHelper; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.quanlian.entity.AccessToken; import com.quanlian.entity.AccessTokenInfo; @Component public class MyApplicationRunner implements ApplicationRunner{ private static AccessToken accessToken = new AccessToken(); //wx3cdd5f5070960261 / wx6201682a508a1dfa //0ed11fa532010d643cea3233e6bc3523 /ffd64f72e5e06a6da8b140f321e07de3 private String appId = "wx6201682a508a1dfa"; private String appSecret = "ffd64f72e5e06a6da8b140f321e07de3"; public void run(ApplicationArguments arg0) throws Exception { System.out.println("获取accesstoken");
//开启一个线程 new Thread(new Runnable() { public void run() { try { while(true){ accessToken = getAccessToken(appId,appSecret); if(AccessTokenInfo.accessToken != null){ Thread.sleep(7000*1000); }else{ Thread.sleep(1000*3); } } } catch (Exception e) { System.out.println("发生异常:" + e.getMessage()); e.printStackTrace(); try { Thread.sleep(1000 * 10); //发生异常休眠1秒 } catch (Exception e1) { } } } }).start(); } private AccessToken getAccessToken(String appId,String appSecret) throws ClientProtocolException, IOException{ NetWorkHelper netHelper = new NetWorkHelper(); /** * 接口地址为https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential& * appid=APPID&secret=APPSECRET, * 其中grant_type固定写为client_credential即可。 */ String Url = String.format("https://api.weixin.qq.com/cgi-bin/token?" + "grant_type=client_credential&appid=%s&secret=%s", appId, appSecret); String result = netHelper.getHttpsResponse(Url, ""); System.out.println("获取到的access_token="+result); JSONObject json = JSON.parseObject(result); AccessToken token = new AccessToken(); token.setAccessToken(json.getString("access_token")); token.setExpiresin(json.getInteger("expires_in")); return token; } }