微信获得access-token
Posted stono
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信获得access-token相关的知识,希望对你有一定的参考价值。
微信获得access-token
RestTemplate template = new RestTemplate(); String appid = "aa"; String secret = "bb"; String tokenUrl = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="+appid+"&secret="+secret; @SuppressWarnings("rawtypes") Map map = template.getForObject(tokenUrl, Map.class); Object obj1 = map.get("access_token"); if(obj1 == null){ // access_token ERROR! return ""; } String accessToken = (String) obj1;
以上是关于微信获得access-token的主要内容,如果未能解决你的问题,请参考以下文章
nodejs开发微信1——微信access-token和tickets的数据模型