facebookios7xmppframework

Can't send message to FB


FB authentication is proper and i can receive messages. Only issue is when sending messages to a FB friend. No error messages or warnings are being shown, but the message is simply not delivered to the FB friend.

This is the string that i am sending

<message xmlns="http://www.facebook.com/xmpp/messages" to="-FB_ID@chat.facebook.com">
<body>my_message</body></message>

Any one having same issue?.


Solution

  • Issue fixed.

    Author replied me:

    OK, I haven't done anything with Facebook chat but why are you setting the xmlns?
    

    That exactly was my problem. I was sending the xmpp messages as shown below:

    <message xmlns="http://www.facebook.com/xmpp/messages" to="-FB_ID@chat.facebook.com">
    <body>dd</body></message>
    

    When I removed the xmlns attribute, everything is fixed :)