微信接口调用 ---ACCESS_TOKEN

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

尝试第一步吧,理解一下,微信的开发文档中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

上一篇:微信上传图文消息素材40007,invalid media_id hint


下一篇:如何区别: Between Vs. From