Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use ejabberd for xmpp proxy with Facebook Chat

It already work but unfornunately when i ask for authentication with chat.facebook.com the X-FACEBOOK-PLATFORM mechanism is not possible

This is facebook answer for mechanism :

<mechanism>DIGEST-MD5</mechanism><mechanism>PLAIN</mechanism>

The complet facebook answer :

<body xmlns='http://jabber.org/protocol/httpbind' xmlns:xmpp='urn:xmpp:xbosh' xmlns:stream='http://etherx.jabber.org/streams' sid='XXX' wait='300' requests='2' inactivity='30' maxpause='120' polling='2' ver='1.6' from='chat.facebook.com' secure='true' authid='433584819' xmpp:version='1.0'>
    <stream:features xmlns:stream='http://etherx.jabber.org/streams'>
        <mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>
            <mechanism>DIGEST-MD5</mechanism>
            <mechanism>PLAIN</mechanism>
        </mechanisms>
        <register xmlns='http://jabber.org/features/iq-register'/>
    </stream:features>
</body>

Do you know why the X-FACEBOOK-PLATFORM mechanism is not in the list ?

Thank you

share|improve this question

1 Answer

up vote 1 down vote accepted

AFAIK ejabberd does not support routing in BOSH. You can only connect to the XMPP domains hosted on your ejabberd sever over BOSH. What you need is a BOSH connection manager like Punjab.

Alex

share|improve this answer
Ok i will try Punjab, thank you ! – EtreRe Mar 9 '12 at 7:34
@Alex is it possible to handle the connections created in ejabber using punjab too ? – Hunt Mar 9 '12 at 10:57
@Hunt You can connect to ejabberd through Punjab also, if that's what you mean. – MattJ Mar 9 '12 at 13:57
so if i wanna go for a custom chat + facebook chat then do i need to user two different end point urls one which connects to ejabberd and other for custom XMPP chat ? – Hunt Mar 9 '12 at 15:00
@Hunt Depends on many factors. But I wouldn't proxy the traffic through Punjab when not unnecessary. So 2 endpoints can make sense, and I see no problem with it. – Alex Mar 9 '12 at 18:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.