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 searched a lot for a perfect example of code that helps me understand how to integrate Facebook in my application. How can I integrate it?

share|improve this question
1  
Sorry - this is off topic for this site. This site is about the use of Android devices. Programming questions like this should be directed to Stack Overflow – Matt H Jan 7 '11 at 9:50
In fact, here's a very similar question 'over there' already: stackoverflow.com/questions/3372020/… – Matt H Jan 7 '11 at 9:52

migrated from android.stackexchange.com Jan 7 '11 at 14:05

3 Answers

please do the steps give in the below link facebook android integration

share|improve this answer
correct answer !! thank you – subrussn90 Feb 17 '12 at 14:18

You could use: http://code.google.com/p/facebook4j/

share|improve this answer
private static final String FB_KEY = "YOUR_KEY";
private Facebook facebook;
private String messageToPost;
facebook = new Facebook(FB_KEY);

if (!facebook.isSessionValid()) {
        loginAndPostToWall();
    } else {
        postToWall(messageToPost);
    }

public void loginAndPostToWall() {
    facebook.authorize(activity, FB_PERMISSIONS,
            Facebook.FORCE_DIALOG_AUTH, new LoginDialogListener());
}

public void postToWall(String message) {
    FBThread fbPost = new FBThread (message);
    fbPost.start();
}


  private class FBThread extends Thread {

    String message;

    FBThread(String message) {
        this.message = message;
    }

    @Override
    public void run() {

        Bundle parameters = new Bundle();
        parameters.putString("message", message);

            try {
            facebook.request("me");
            String response = facebook.request("me/feed", parameters,
                    "POST");

            if (response == null || response.equals("")
                    || response.equals("false")) {
                toastMessage = "Blank response.";
            } else if (response.contains("error")) {
                toastMessage = "Post Failed because of duplicates...";
            } else {
                toastMessage = "Message posted to your facebook wall!";
            }

        } catch (Exception e) {
            toastMessage = "Failed to post to wall!";
            e.printStackTrace();
        }

    }
}

    class LoginDialogListener implements DialogListener {
    public void onCancel() {

        android.webkit.CookieManager.getInstance().removeAllCookie();
    }

    public void onComplete(Bundle values) {

        if (messageToPost != null) {
            postToWall(messageToPost);
        }
    }

    public void onError(DialogError error) {

        android.webkit.CookieManager.getInstance().removeAllCookie();
    }

    public void onFacebookError(FacebookError error) {

        android.webkit.CookieManager.getInstance().removeAllCookie();
    }
}
share|improve this answer

Your Answer

 
discard

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