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

微信接口调用 ---ACCESS_TOKEN

时间:2016-05-23 10:18:43      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:

开始尝试一点点微信企业号的开发,目前的要求的开发的第三方软件可以直接通过微信扫码直接登录。

尝试第一步吧,理解一下,微信的开发文档中url怎么用。

刚开始接触是尝试主动调用,获得Access_Token.

corpid为企业的代号,corpsecret是赋予了权限的用户的secretid.

 1 public static String getToken(){
 2         
 3         String urlname="https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=xxxxxxxxxxxxx&corpsecret=xxxxxxxxxxxxxxx";
 4         String line="";
 5         URL url=null;
 6        try{
 7        url=new URL(urlname);
 8       URLConnection con=url.openConnection();
 9       BufferedReader read=new BufferedReader(new InputStreamReader(con.getInputStream(),"UTF-8"));      
10        line=read.readLine();     
11       read.close();
12     }catch(Exception e){
13         e.printStackTrace();
14     }
15        System.out.println(line);
16        return line;
17     }
18     public static void main(String []args){
19         getPeopleList();
20     }
21    public static void getPeopleList(){    
22        String mm=getToken();
23        JSONObject jsonobject=JSONObject.fromObject(mm);
24        String accessToken=(String)jsonobject.get("access_token");
25       System.out.println("ACCESSTOKEN为"+accessToken);
26    }

 其中用到了jsonobject用于转换string  --->json,需要引入额外的jar包。

微信接口调用 ---ACCESS_TOKEN

标签:

原文地址:http://www.cnblogs.com/bounceFront/p/5518717.html

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