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'm developing a Facebook Chat client and I'm using QXmpp to connect to the chat server.

QString user = ... // This is the Facebook's user id, not the user's email 
QString passwd = ...
QXmppClient *xmppClient = new QXmppClient();
xmppClient->connectToServer(user + "@chat.facebook.com", passwd);

With a few random users I can't connect. Checking the log I'm getting:

vie 12. oct 21:02:58 2012 RECEIVED <failure xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><not-authorized/></failure>
vie 12. oct 21:03:03 2012 WARNING Authentication failure

Here is the full log that might be of help:

vie 12. oct 21:02:56 2012 INFO Connecting to chat.facebook.com:5222
vie 12. oct 21:02:56 2012 INFO Socket connected to 69.171.241.10 5222
vie 12. oct 21:02:56 2012 SENT <?xml version='1.0'?><stream:stream to='chat.facebook.com' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
vie 12. oct 21:02:56 2012 RECEIVED <?xml version="1.0"?><stream:stream id="415FB2C4" from="chat.facebook.com" version="1.0" xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams" xml:lang="en"><stream:features><starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"/><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>X-FACEBOOK-PLATFORM</mechanism><mechanism>DIGEST-MD5</mechanism></mechanisms></stream:features>
vie 12. oct 21:02:56 2012 SENT <starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>
vie 12. oct 21:02:57 2012 RECEIVED <proceed xmlns="urn:ietf:params:xml:ns:xmpp-tls"/>
vie 12. oct 21:02:57 2012 DEBUG Starting encryption
vie 12. oct 21:02:57 2012 DEBUG Socket encrypted
vie 12. oct 21:02:57 2012 SENT <?xml version='1.0'?><stream:stream to='chat.facebook.com' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
vie 12. oct 21:02:57 2012 RECEIVED <?xml version="1.0"?><stream:stream id="58365031" from="chat.facebook.com" version="1.0" xmlns="jabber:client" xmlns:stream="http://etherx.jabber.org/streams" xml:lang="en">
vie 12. oct 21:02:57 2012 RECEIVED <stream:features><mechanisms xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><mechanism>X-FACEBOOK-PLATFORM</mechanism><mechanism>DIGEST-MD5</mechanism></mechanisms></stream:features>
vie 12. oct 21:02:57 2012 SENT <auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='DIGEST-MD5'/>
vie 12. oct 21:02:57 2012 RECEIVED <challenge xmlns="urn:ietf:params:xml:ns:xmpp-sasl">cmVhbG09ImNoYXQuZmFjZWJvb2suY29tIixub25jZT0iRERBQTY1RjNGMzhGOUUzNjI5OEQ3QzUyRTc0MTJGMkQiLHFvcD0iYXV0aCIsY2hhcnNldD11dGYtOCxhbGdvcml0aG09bWQ1LXNlc3M=</challenge>
vie 12. oct 21:02:57 2012 SENT <response xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>Y2hhcnNldD11dGYtOCxjbm9uY2U9ImtUdFY1YklqMlViYWg4b3lyNjBYUkl2VkdmSGlBajZpMCtNNTVJY28wU1k9IixkaWdlc3QtdXJpPSJ4bXBwL2NoYXQuZmFjZWJvb2suY29tIixuYz0wMDAwMDAwMSxub25jZT1EREFBNjVGM0YzOEY5RTM2Mjk4RDdDNTJFNzQxMkYyRCxxb3A9YXV0aCxyZWFsbT1jaGF0LmZhY2Vib29rLmNvbSxyZXNwb25zZT1jZWQ5MjEzMzAxOGJiNTAyNzFhMzk3YzU3YThiZjgyZix1c2VybmFtZT1FbGkuTWFydGludGV6LkxNRkFP</response>
vie 12. oct 21:02:58 2012 RECEIVED <failure xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><not-authorized/></failure>
vie 12. oct 21:03:03 2012 WARNING Authentication failure
share|improve this question
I log into facebook chat by using firstname.lastname@chat.facebook.com – ZippyV Oct 24 '12 at 13:47
Didn't work for me. Thanks. – Paglian Oct 25 '12 at 14:36

1 Answer

up vote 0 down vote accepted

The problem was the username capitalization. Facebook allows usernames with capital letters but in order to connect to Facebook Chat using XMPP the username must be normalized to lower case. For instance:

QString user = ... // This is the Facebook's user id, not the user's email 
QString passwd = ...

QString normUser = user.toLower(); // Normalized username

QXmppClient *xmppClient = new QXmppClient();
xmppClient->connectToServer(normUser + "@chat.facebook.com", passwd);
share|improve this answer

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.