Java微信公众平台开发(12) 微信用户信息的获取
前面的文章有讲到微信的一系列开发文章,包括token获取、菜单创建等,在这一篇将讲述在微信公众平台开发中如何获取微信用户的信息,在上一篇我们有说道微信用户和微信公众账号之间的联系可以通过openid关联,所以在这里我们就采用openid去获取用户微信信息,并实现一个简单场景应用:当微信新用户关注我们的微信公众平台的时候我们自动回复一篇图文消息,然后在图文消息中标题为:【尊敬的:xxx,你好!】,而且在图文消息中的图片就是用户的微信头像,如下图:
有关获取微信用户信息的文档我们可以参照: 。
(一)用户微信消息的获取实现
在关注者与公众号产生消息交互后,公众号可获得关注者的openid(加密后的微信号,每个用户对每个公众号的openid是唯一的。对于不同公众号,同一用户的openid不同)。公众号可通过本接口来根据openid获取用户基本信息,包括昵称、头像、性别、所在城市、语言和关注时间。
http请求方式: get https://api.weixin.qq.com/cgi-bin/user/info?access_token=access_token&openid=openid&lang=zh_cn
在这里我写了一个方法类getuseinfo.java,在方法中我们只需要传入openid即可返回(昵称,图像、性别【其他参数可自行获取】),代码实现如下:
package com.cuiyongzhi.wechat.common; import java.util.hashmap; import com.cuiyongzhi.web.util.globalconstants; import com.cuiyongzhi.wechat.util.httputils; import net.sf.json.jsonobject; /** * classname: getuseinfo * @description: 获取微信用户信息 * @author dapengniao * @date 2016年3月18日 下午2:00:52 */ public class getuseinfo { /** * @description: 通过openid获取用户微信信息 * @param @param openid * @param @return * @param @throws exception * @author dapengniao * @date 2016年3月18日 下午2:01:30 */ public static hashmap<string, string> openid_userinfo(string openid) throws exception { hashmap<string, string> params = new hashmap<string, string>(); params.put("access_token", globalconstants.getinterfaceurl("access_token")); //定时器中获取到的token params.put("openid", openid); //需要获取的用户的openid params.put("lang", "zh_cn"); string subscribers = httputils.sendget( globalconstants.getinterfaceurl("openiduserinfourl"), params); system.out.println(subscribers); params.clear(); //这里返回参数只取了昵称、头像、和性别 params.put("nickname", jsonobject.fromobject(subscribers).getstring("nickname")); //昵称 params.put("headimgurl", jsonobject.fromobject(subscribers).getstring("headimgurl")); //图像 params.put("sex", jsonobject.fromobject(subscribers).getstring("sex")); //性别 return params; } }
(二)关注回复图文消息实现
在第一部分中有说道【在关注者与公众号产生消息交互后,公众号可获得关注者的openid】,在我们的场景中获取关注者openid的事件就是用户的关注事件,同时我们也是在关注事件中给关注者被动回复图文消息(图文消息的回复实现可参照:java微信公众平台开发(5) 文本及图文消息回复的实现 ),其实现过程:
通过关注事件获取到openid,调用获取用户信息接口获取关注者相关接口;
在关注事件被动回复中设置图文消息的title以及图片,回复给关注者;
简单代码实现如下:
//对图文消息 newsmessage newmsg=new newsmessage(); newmsg.settousername(openid); newmsg.setfromusername(mpid); newmsg.setcreatetime(new date().gettime()); newmsg.setmsgtype(messageutil.resp_message_type_news); if (map.get("event").equals(messageutil.event_type_subscribe)) { // 关注事件 system.out.println("==============这是关注事件!"); try { hashmap<string, string> userinfo=getuseinfo.openid_userinfo(openid); article article=new article(); article.setdescription("欢迎来到崔用志的个人博客:菜鸟程序员成长之路!"); //图文消息的描述 article.setpicurl(userinfo.get("headimgurl")); //图文消息图片地址 article.settitle("尊敬的:"+userinfo.get("nickname")+",你好!"); //图文消息标题 article.seturl("http://www.cuiyongzhi.com"); //图文url链接 list<article> list=new arraylist<article>(); list.add(article); //这里发送的是单图文,如果需要发送多图文则在这里list中加入多个article即可! newmsg.setarticlecount(list.size()); newmsg.setarticles(list); return messageutil.newsmessagetoxml(newmsg); } catch (exception e) { // todo auto-generated catch block system.out.println("====代码有问题额☺!"); logger.error(e,e); } }
最终我们可以来看看我们的成果,这里为了看到效果很直观我先取消关注然后再次关注的,如下图:
到这里通过openid过去关注者信息的实现就基本结束了,下一篇将讲述【微信web中jssdk的开发配置】,感谢你的翻阅,如有疑问可以留言讨论!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。