如何进行 Facebook 聊天?
我想创建一个 Android Facebook 聊天应用程序,我找到了这个开源项目.. http://coderrr.wordpress.com/2008/05/06/ facebook-chat-api/
但我想问一下这个“Facebook chat api”是否仍然有效?
如果没有,创建 Facebook 聊天的方式是什么?
I want to create an android Facebook chat application , i found this open source project ..
http://coderrr.wordpress.com/2008/05/06/facebook-chat-api/
but i want to ask whether this "Facebook chat api" is still working ?
If no, what is the way to creat a facebook chat ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
深入了解http://developers.facebook.com/docs/chat/。在 Web 上可以找到许多适用于 Java、C#、iOS 和 Android 的 XMPP 和相关 API - 或者您可以基于 Pidgin (http://www.pidgin.im/) 的 libpurple API 进行此类工作。您有必要熟悉 XMPP 概念。
Dig a bit deeper into http://developers.facebook.com/docs/chat/. There are a number of XMPP and related APIs for Java, C#, iOS, and Android alike to be found on the web - or you can base such work on the libpurple API from Pidgin (http://www.pidgin.im/). It would behoove you to become familiar with XMPP concepts.
有很棒的简单代码 https://github.com/KanybekMomukeyev/FacebookChat ,我在我的应用程序中使用了它。
There is great simple code https://github.com/KanybekMomukeyev/FacebookChat , i used it in my app.
Facebook 提供了自己的聊天 API。请参阅与 Facebook Chat 集成中的文档。他们提供 PHP 示例代码。
您还可以使用 Jabber 通过 Facebook 进行身份验证。您需要一个应用程序密钥来确保这一切正常进行。
Facebook provides their own chat API. See the docs at Integrating with Facebook Chat. They provide sample code in PHP.
You can also use Jabber to authenticate with Facebook. You'll need an application key to ensure this all works.
你可以使用 facebook 身份验证或摘要 md5 集成 fb 聊天...那里给出的代码不使用任何 API 密钥,也不使用摘要 md5 身份验证...所以不确定它是否会起作用...尝试一下...整体架构是
app<->xmpp<->BOSH<->Facebook 聊天
由于fb支持xmpp协议,你可以使用lib像smack、strope、asmack等设置xmpp聊天客户端...
请参阅http ://professionalxmpp.com/..great 首先..给出了关于硬件的完整想法...
U can integrate fb chat using facebook authentication or by digest md5...the code given there does not use any API keys nor it uses digest md5 authentication... So not sure whether it ll wrk...try it out... the overall architecture would be
app<->xmpp<->BOSH<->Facebook chat
Since fb support xmpp protocol u can set an xmpp chat client using lib lik smack,strophe,asmack etc...
refer to http://professionalxmpp.com/..great to start with..gives complete idea on hw to go abt...