如何使用 XMPP 和 google appengine 获取 gtalk 用户的用户名?
我正在使用 google appengine 作为我的 gtalk 代理,我想获取 gtalk 用户的用户名,如何获取它?
供您参考,检查一下
XMPPService xmpp = XMPPServiceFactory.getXMPPService();
//STEP 2
Message msg = xmpp.parseMessage(req);
JID fromJid = msg.getFromJid();
我一开始就使用上面的东西......
I am using google appengine for my gtalk agent , I want to get the username of the gtalk user how can I get it ?
for your reference, check this
XMPPService xmpp = XMPPServiceFactory.getXMPPService();
//STEP 2
Message msg = xmpp.parseMessage(req);
JID fromJid = msg.getFromJid();
I am using the above things in the beginning .....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JID 由
user@ 组成域/资源
。该资源是可选的,并提供有关用户如何通信的更多信息(例如桌面或客户端应用程序)。编辑:请参阅 Java JID类
The JID is composed of
user@domain/resource
. The resource is optional, and provides more information about how the user is communicating (e.g. desktop or client app).EDIT: See the Java JID class