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.

Smack is an XMPP (Jabber) client library written in Java. It provides a simple API to allow Java developers to write clients which access XMPP servers.

learn more… | top users | synonyms

3
votes
1answer
50 views

Asmack for facebook chat doesn't work with PrivacyListManager

I am working in an android application and I have integrated facebook chat into my android application successfully with aSmack. But when I login to the facebook chat with aSmack libary, my facebook ...
0
votes
1answer
384 views

XMPP - Facebook - How can my client implementation receive messages sent by other client implementations?

I have implemented a facebook chat client that connect using the Smack API. At this moment, the main features are working well. I send, receive messages, receive typing notifications... But I have a ...
0
votes
0answers
80 views

Facebook Chat Not Picking Up Link When Sent from External Client

I was wondering if there is a way for a link that is sent as part of the message through XMPP protocol to be picked up and rendered by Facebook. I found that even if the page that the link is pointing ...
0
votes
0answers
333 views

Working example of integration Smack 3.2.2 with facebook chat

I try to connect my web application with smack to facebook chat. There is my SlacMechanism implementation (example in scala): object SASLXFacebookPlatformMechanism { val NAME = ...
0
votes
0answers
117 views

Is it possible to make file transfer over facebook chat using smack api? [closed]

Is it possible to create file transfer over facebook chat using the smack api? I know that the smack api has support for file transfer, but is it possible to do it through facebook chat and if it is ...
0
votes
0answers
882 views

Connect to chat.facebook.com using smack 3.2.2 [closed]

I am using the following code: ConnectionConfiguration config = new ConnectionConfiguration("chat.facebook.com",5222,"chat.facebook.com"); XMPPConnection connection = new XMPPConnection(config); try ...
0
votes
0answers
600 views

How to use smack through a proxy

I am trying to access to Facebook Chat through proxy because of the firewall.Here is what I tried so far. private void LoginXMPP(String accesstoken) { ProxyInfo pi = new ...
8
votes
1answer
2k views

X-FACEBOOK-PLATFORM authentication with SMACK Java library using OAuth 2.0

First post here so please be gentle. I'm building a facebook chat client, using Smack library. I'm using X-FACEBOOK-PLATFORM method in order not to save any passwords. I had it working properly using ...
2
votes
1answer
1k views

Problem with Smack in Facebook chat app for Android: Connection.getRoster().getEntries() is always empty

I'm trying to implement a simple Facebook chat application on Android. It lets the user login, after which the app opens a new ListActivity enumerating the user's online contacts, and upon clicking on ...
0
votes
1answer
900 views

XMPPError connecting to chat.facebook.com (Permission denied) logging in to facebook chat with asmack

As you may know, there's not a single organized documentation on how to properly login to Facebook using the asmack library. I've somehow managed to find some codes in the net to at least allow me to ...
1
vote
2answers
1k views

How to REALLY create a Facebook chat client for Android?

Before anybody even cries duplication, I'd like to say that none of the questions currently posted here in StackOverflow got me started. I'm currently tasked to create a simple Facebook chat client ...
0
votes
1answer
503 views

facebook chat using asmack, user presence change delay

I am creating a facebook chat client using asmack library. Creating a connection, retrieval of contacts, establishing a chat, everything goes fine. However, when a user goes offline, it takes a while ...
1
vote
2answers
3k views

facebook chat authentication using the X-FACEBOOK-PLATFORM SASL authentication

I'm dealing with the facebook chat authentication using the X-FACEBOOK-PLATFORM SASL authentication mechanism. I'm forming the user and password as explained in the facebook developer forum and the ...
0
votes
4answers
3k views

How to use smack with Openfire

Hi I am planning to develop a chat client which can connect to gtalk facebook etc...I have decided to use the smack API along with openfire.. But I need little guidance as to how to use it with ...
0
votes
2answers
1k views

Getting user id s instead of user names in facebook chat

I could integrate Facebook chat using Smack. I get my friends list but it's all their user id's and not their names. The following is the code for getting friends list public void displayBuddyList() ...
4
votes
3answers
4k views

SASL Authentication failed while integrating facebook chat using Smack

I am trying to integrate facebook chat using smack API.But i get an error telling authentication failed using digest md5... Here s the code for authentication: ...
8
votes
6answers
7k views

XMPP with Java Asmack library supporting X-FACEBOOK-PLATFORM

I'm trying to make a Facebook Chat on Android with the Smack library. I've read the Chat API from Facebook, but I cannot understand how I have to authenticate with Facebook using this library. Can ...
0
votes
1answer
1k views

android use smack api with facebook chat

hi im trying to use the smack api to send/receive messages in facebook chat. im using: host: chat.facebook.com port: 5222 service: chat.facebook.com username: my facebook username@chat.facebook.com ...