How to make facebook chat?

I want to create an Android chat application for Android, I found this open source project .. http://coderrr.wordpress.com/2008/05/06/facebook-chat-api/

but I want to ask if this "Facebook chat api" works?

If not, what is the way to create a facebook chat?

+4
source share
4 answers

Dig a little deeper at http://developers.facebook.com/docs/chat/ . There are several XMPPs and related APIs for Java, C #, iOS and Android that can be found on the Internet, or you can base this work on the Pidgin libpurple API (http://www.pidgin.im/), you should to become familiar with XMPP concepts.

+4
source

There is a big simple code https://github.com/KanybekMomukeyev/FacebookChat , I used it in my application.

+2
source

Facebook provides its own chat API. See Documents in Facebook Chat Integration . They provide sample code in PHP.

You can also use Jabber to authenticate with Facebook. You will need an application key to ensure that it all works.

+1
source

U can integrate fb chat using facebook authentication or md5 digest ... the code listed there does not use any API keys or does not use digest md5 authentication ... So I'm not sure what it will be ... try .. . general architecture will

application ↔ xmpp ↔ BOSH ↔ Facebook chat Since fb supports the xmpp protocol, you can install the xmpp chat client using lib lik smack, strophe, asmack etc.

refer to http://professionalxmpp.com/..great to start with. The full idea of ​​hw was moved abt ...

0
source

All Articles