赞
踩
appId :小程序appid
secret:小程序秘钥
- /**
- * 小程序获取基础的openid
- * @return
- */
- @Override
- public String getWxProAuthOpenid(String code){
- String appId=wxConfig.getAppid();
- String secret=wxConfig.getSecret();
- String url=wxConfig.getUrl();
- String grant_type="authorization_code";
- String fiurl=String.format(url, appId,secret,code,grant_type);
- RestTemplate restTemplate=new RestTemplate();
- String result=restTemplate.getForObject(fiurl,String.class);
- log.info("微信小程序获取openid接口返回结果:"+result);
- return result;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。