码迷,mamicode.com
首页 > 微信 > 详细

微信网页授权Java实现

时间:2017-03-27 00:16:55      阅读:484      评论:0      收藏:0      [点我收藏+]

标签:span   wiki   logs   token   .class   方法   微信   sys   rom   

微信网页授权Java实现

官方文档:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842&token=&lang=zh_CN

在获取了code之后,获取网页的access_token和openid,

这个时候有一个坑,

        RestTemplate template = new RestTemplate();
        Object  jsonString = template.getForObject(url, String.class); 
        System.out.println(jsonString);
        
        JSONObject fromObject = JSONObject.fromObject(jsonString);
        System.out.println(fromObject);
        Object openidObject = fromObject.get("openid");
        System.out.println(openidObject);

获取基础支持中的access_token的时候,RestTemplate调用可以直接转为Map.class对象,

结果获取网页的access_token,竟然返回的是字符串;

需要自己在用json-lib再转一次;好像没有找对方法呀;有木有好心人告诉我;好像spring对于JSON字符串与对象之间的转换好像有些不太感兴趣;

 

微信网页授权Java实现

标签:span   wiki   logs   token   .class   方法   微信   sys   rom   

原文地址:http://www.cnblogs.com/stono/p/6624837.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!