我正在为 FB 开发一个简单的聊天客户端。我已经发展到现在我拥有使用“xmpp_login”和“offline_access”范围登录到我的聊天的用户的 access_token 的状态。我能够成功连接到 chat.facebook.com 并使用 api_key 和 access_token 登录。SASL 认证没有问题。
现在,当我尝试使用 chat.sendMessage(String) 或 chat.sendMessage(Message) 发送消息时,smack 调试器显示消息已发送。但是在我的 facebook 网站上,我没有看到发送给那个人的消息。
你好kVfox0
这是 Smack 调试器 Sent 列的输出。发件人地址有什么问题吗?或使用此消息结构?我被困在这一点上,因为我不知道如何调试这个问题。
欢迎任何意见、建议或解决方案。
这是我正在使用的代码片段,
ConnectionConfiguration config = new ConnectionConfiguration("chat.facebook.com",5222);//ProxyInfo.forHttpProxy(soc.getHostName(),8080, null, null));
config.setSASLAuthenticationEnabled(true);
XMPPConnection connection = new XMPPConnection(config);
XMPPConnection.DEBUG_ENABLED = true;
SASLAuthentication.registerSASLMechanism("X-FACEBOOK-PLATFORM", SASLXFBAuthentication.class);
SASLAuthentication.supportSASLMechanism("X-FACEBOOK-PLATFORM", 0);
connection.connect();
String apiKey ="282973731790200";
String accessToken ="My access token with xmpp_login and offline_access scope";
connection.login(apiKey, accessToken);
Chat newchat = connection.getChatManager().createChat("praveen.ganapathi@chat.facebook.com", new MessageListener() {
public void processMessage(Chat chat, Message message) {
// Print out any messages we get back to standard out.
System.out.println("Received message: " + message);
}
});
Message msg = new Message();
msg.addBody("English", text);
msg.addSubject("English", "Test");
msg.setType(Type.chat);
// connection.sendPacket(msg);
newchat.sendMessage(msg);
谢谢和问候, Karthik