java调用qq聊天并显示在线状态

最近没有更新博客,项目中用到一个客服聊天并显示是否在线的小功能,记录一下:

要想可以查询qq的在线状态和发起及时聊天(参考上上篇博客),必须去此网址开通qq推广(http://shang.qq.com/v3/widget.html)

http://webpresence.qq.com/getonline?Type=1&123456:1111:
拼接请求网址.返回online数组

java代码

StringBuffer sb = new StringBuffer();
			sb.append("http://webpresence.qq.com/getonline?Type=1&");
			for (CustomerServiceDTO customerServiceDTO : customerList) {
				sb.append(customerServiceDTO.getCustomerServiceQQ()+":");
			}
			model.addAttribute("qqList", sb);


客服电话
400-





你可能感兴趣的:(java调用qq聊天并显示在线状态)