我正在使用此代码发送消息,但我的消息未送达。而我收到从 facebook 发送的消息。请帮助我,因为我不知道我做错了什么。
if([textMessage length] > 0){
NSXMLElement *body = [NSXMLElement elementWithName:@"body"];
[body setStringValue:textMessage];
NSXMLElement *message = [NSXMLElement elementWithName:@"message"];
[message addAttributeWithName:@"xmlns" stringValue:@"http://www.facebook.com/xmpp/messages"];
[message addAttributeWithName:@"to" stringValue:[NSString stringWithFormat:@"-%@@chat.facebook.com",friendID]];
[message addChild:body];
[self.xmppStream sendElement:message];
}