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 use following code to use facebook chat in my android application package com.example.gtalk;

        public class MainActivity extends Activity implements OnClickListener {

private ArrayList<String> messages = new ArrayList();
private ArrayList<String> nameA = new ArrayList();
private Handler mHandler = new Handler();
private EditText mRecipient;
private EditText mSendText;
private ListView mList;

private String mHost, mPort, mService, mUsername, mPassword;

private String TAG;
Button b1, b2;
ListView lv;
CityListAdapter ap;
String[] temp;
String[] temp1;
int index = 0, j = 0;
ArrayList<String> onlineFrnd = new ArrayList<String>();

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    initLayout();

    initFB();

    createConnection();


    loginToXMPP();

    b2.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            // loAlert();
        }
    });
    b1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            Roster roster = C.mConnection.getRoster();
            Collection<RosterEntry> entries = roster.getEntries();
            Log.e("Entries:", entries + "");
            ProviderManager.getInstance().addIQProvider("vCard",
                    "vcard-temp", new VCardProvider());
            VCard card = null;
            for (RosterEntry entry : entries) {

                // temp1[index]=temp[1];
                index = index + 1;
                Log.e("Email:", entry + "");
                card = new VCard();
                Presence presencek = roster.getPresence(entry.getUser());
                try {
                    card.load(C.mConnection, entry.getUser());

                } catch (Exception e) {
                    e.printStackTrace();
                }

                String jid = entry.getUser();
                String name = card.getField("FN");
                String status = presencek.getType().name();
                String name1 = card.getField("ID");
                Log.d("Prescence", "" + name + "" + status + name1);// //num
                                                                    // one
                                                                    // log

                if (status.equals("available")) {
                    String s = entry.toString();
                    if (s.contains(": ")) {
                        temp = s.split(": ");
                        onlineFrnd.add(temp[1]);
                    } else {
                        onlineFrnd.add(s);
                    }
                    Log.e("Temp Size-----------------------", temp.length
                            + "");
                    Log.e("Temp Value-----------------------", temp[0]
                            + "----" + temp[1]);
                    nameA.add(name);
                    temp[0] = null;
                    temp[1] = null;
                }
                /*
                 * byte[] imgs = card.getAvatar(); if (imgs != null) { int
                 * len = imgs.length; Bitmap img =
                 * BitmapFactory.decodeByteArray(imgs, 0, len); }
                 */
                // temp = new String[2];
                // Log.e("After Temp Size-----------------------",temp.length+"");
            }

            Log.e("Size----------------------------------------------",
                    nameA.size() + "");

            Log.e("Size----------------------------------------------",
                    onlineFrnd.size() + "");
            ap = new CityListAdapter(MainActivity.this, nameA, onlineFrnd);
            lv.setAdapter(ap);
            ap.notifyDataSetChanged();
            logoutAlert();
        }
    });

}

void initLayout() {
    Log.i("XMPPClient", "onCreate called");
    setContentView(R.layout.activity_main);

    mRecipient = (EditText) this.findViewById(R.id.recipient);
    Log.i("XMPPClient", "mRecipient = " + mRecipient);
    mSendText = (EditText) this.findViewById(R.id.sendText);
    Log.i("XMPPClient", "mSendText = " + mSendText);
    mList = (ListView) this.findViewById(R.id.listMessages);
    Log.i("XMPPClient", "mList = " + mList);
    // Set a listener to send a chat text message
    Button send = (Button) this.findViewById(R.id.send);
    b1 = (Button) findViewById(R.id.setup);
    b2 = (Button) findViewById(R.id.Login);
    lv = (ListView) findViewById(R.id.onlineList);
    lv.setVisibility(View.GONE);
    send.setOnClickListener(this);

    setListAdapter();
}

void initGtalk() {
    mHost = "talk.google.com";
    mPort = "5222";
    mService = "gmail";
    mUsername = "ferojcse@gmail.com";
    mPassword = "XXXXXXXXXX";
    // Set Default recipients for Gtalk
    mRecipient.setText("default_buddy@gmail.com");
}

void initFB() {
    mHost = "chat.facebook.com";
    mPort = "5222";
    mService = "chat.facebook.com";
    mUsername = "sajol.saha.12chat.facebook.com";
    mPassword = "XXXXXXXXX";
    // Set Default recipients for FB
    mRecipient.setText("new_userid@chat.facebook.com");
}

void createConnection() {
    C.mConnConfig = new ConnectionConfiguration(mHost,
            Integer.parseInt(mPort), mService);
    C.mConnConfig.setSecurityMode(SecurityMode.required);
    C.mConnConfig.setSASLAuthenticationEnabled(true);
    C.mConnection = new XMPPConnection(C.mConnConfig);

    try {
        C.mConnection.connect();
        Log.i("XMPPClient", "[SettingsDialog] Connected to "
                + C.mConnection.getHost());
    } catch (XMPPException ex) {
        Log.e("XMPPClient", "[SettingsDialog] Failed to connect to "
                + C.mConnection.getHost());
        Log.e("XMPPClient", ex.toString());
        setConnection(null);
    }
}

void loginToXMPP() {
    try {
        C.mConnection.login(mUsername, mPassword);
        Log.i("XMPPClient", "Logged in as " + C.mConnection.getUser());

        // Set the status to available
        Presence presence = new Presence(Presence.Type.available);
        C.mConnection.sendPacket(presence);
        setConnection(C.mConnection);
    } catch (XMPPException ex) {
        Log.e("XMPPClient", "[SettingsDialog] Failed to log in as "
                + mUsername);
        Log.e("XMPPClient", ex.toString());
        setConnection(null);
    }
}

/**
 * Called by Settings dialog when a connection is established with the XMPP
 * server
 * 
 * @param connection
 */
public void setConnection(XMPPConnection connection) {
    C.mConnection = connection;
    if (connection != null) {
        // Add a packet listener to get messages sent to us
        PacketFilter filter = new MessageTypeFilter(Message.Type.chat);
        connection.addPacketListener(new PacketListener() {
            public void processPacket(Packet packet) {
                Message message = (Message) packet;
                if (message.getBody() != null) {
                    String fromName = StringUtils.parseBareAddress(message
                            .getFrom());
                    Log.i("XMPPClient", "Got text [" + message.getBody()
                            + "] from [" + fromName + "]");
                    messages.add(fromName + ":");
                    messages.add(message.getBody());
                    // Add the incoming message to the list view
                    mHandler.post(new Runnable() {
                        public void run() {
                            setListAdapter();
                        }
                    });
                }
            }
        }, filter);
    }
}

private void setListAdapter() {
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
            R.layout.multi_line_list_item, messages);
    mList.setAdapter(adapter);
}

public void onClick(View v) {
    if (v.getId() == R.id.send) {
        String to = mRecipient.getText().toString();
        String text = mSendText.getText().toString();

        Log.i("XMPPClient", "Sending text [" + text + "] to [" + to + "]");
        Message msg = new Message(to, Message.Type.chat);
        msg.setBody(text);
        C.mConnection.sendPacket(msg);
        messages.add(C.mConnection.getUser() + ":");
        messages.add(text);
        setListAdapter();
    }

}

private void logoutAlert() {
    // TODO Auto-generated method stub

    AlertDialog.Builder loginAlertDialog = new AlertDialog.Builder(
            MainActivity.this);
    loginAlertDialog.setTitle("Are you sure Logout this" + "\n"
            + "Application?");
    loginAlertDialog.setCancelable(false);
    loginAlertDialog.setAdapter(ap, new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int item) {
            Toast.makeText(
                    MainActivity.this,
                    "You selected: " + nameA.get(item) + "\n"
                            + onlineFrnd.get(item), Toast.LENGTH_LONG)
                    .show();
            mRecipient.setText(onlineFrnd.get(item));
            dialog.dismiss();
        }
    });

    loginAlertDialog.setPositiveButton("OK",
            new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface arg0, int arg1) {

                    // TODO Auto-generated method stub
                    /*
                     * if(CheckInternet.checkConn(MapleGPS.this))
                     * getLocation();
                     */
                    // Toast.makeText(getApplicationContext(), "Yes",
                    // Toast.LENGTH_LONG).show();
                }

            });
    loginAlertDialog.setNegativeButton("Cancel",
            new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int arg1) {
                    // TODO Auto-generated method stub
                    dialog.cancel();
                }
            });

    AlertDialog loginDialog = loginAlertDialog.create();

    loginDialog.show();
}

  }

But i got exception in logcat

Failed to log in as sajol.saha.12chat.facebook.com

SASL authentication failed using mechanism DIGEST-MD5:

Please give a solution

share|improve this question
finally i can solve the problem.....:) – Sajol Oct 17 '12 at 3:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.