本文整理汇总了Java中me.chanjar.weixin.mp.bean.tag.WxTagListUser类的典型用法代码示例。如果您正苦于以下问题:Java WxTagListUser类的具体用法?Java WxTagListUser怎么用?Java WxTagListUser使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
WxTagListUser类属于me.chanjar.weixin.mp.bean.tag包,在下文中一共展示了WxTagListUser类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: tagListUser
import me.chanjar.weixin.mp.bean.tag.WxTagListUser; //导入依赖的package包/类
@Override
public WxTagListUser tagListUser(Long tagId, String nextOpenid)
throws WxErrorException {
String url = "https://api.weixin.qq.com/cgi-bin/user/tag/get";
JsonObject json = new JsonObject();
json.addProperty("tagid", tagId);
json.addProperty("next_openid", StringUtils.trimToEmpty(nextOpenid));
String responseContent = this.wxMpService.post(url, json.toString());
return WxTagListUser.fromJson(responseContent);
}
示例2: tagListUser
import me.chanjar.weixin.mp.bean.tag.WxTagListUser; //导入依赖的package包/类
@Override
public WxTagListUser tagListUser(Long tagId, String nextOpenid)
throws WxErrorException {
String url = "https://api.weixin.qq.com/cgi-bin/user/tag/get";
JsonObject json = new JsonObject();
json.addProperty("tagid", tagId);
json.addProperty("next_openid", StringUtils.trimToEmpty(nextOpenid));
String responseContent = this.wxMpService.post(url, json.toString());
return WxTagListUser.fromJson(responseContent);
}
示例3: testTagListUser
import me.chanjar.weixin.mp.bean.tag.WxTagListUser; //导入依赖的package包/类
@Test
public void testTagListUser() throws Exception {
WxTagListUser res = this.wxService.getUserTagService().tagListUser(this.tagId, null);
System.out.println(res);
Assert.assertNotNull(res);
}
示例4: tagListUser
import me.chanjar.weixin.mp.bean.tag.WxTagListUser; //导入依赖的package包/类
/**
* <pre>
* 获取标签下粉丝列表
* 详情请见:<a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140837&token=&lang=zh_CN">用户标签管理</a>
* 接口url格式: https://api.weixin.qq.com/cgi-bin/user/tag/get?access_token=ACCESS_TOKEN
* </pre>
*
*/
WxTagListUser tagListUser(Long tagId, String nextOpenid)
throws WxErrorException;
示例5: tagListUser
import me.chanjar.weixin.mp.bean.tag.WxTagListUser; //导入依赖的package包/类
/**
* <pre>
* 获取标签下粉丝列表
* 详情请见:<a href="http://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140837&token=&lang=zh_CN">用户标签管理</a>
* 接口url格式: https://api.weixin.qq.com/cgi-bin/user/tag/get?access_token=ACCESS_TOKEN
* </pre>
*/
WxTagListUser tagListUser(Long tagId, String nextOpenid)
throws WxErrorException;