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 am trying to Integrate Facebook in my Android Application. I have successfully integrated by creating an Application at the Facebook and can POST the Wall messages.

I want to know whether I can post a message on "MY" wall by just getting logged in without creating a Facebook application. If someone has done this please help me to achieve so.

Thanks in Advance.

share|improve this question

closed as not a real question by casperOne May 21 '12 at 16:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

First of all take facebook api for android. and put it in your project build path. then write below code in your activity:

protected void onCreate(Bundle arg0) {
final Facebook mFacebook = new Facebook(APP_KEY);
mFacebook.authorize((Activity) context, PERMISSIONS,
                    new LoginDialogListener());
}

private final class LoginDialogListener implements DialogListener {
        public void onComplete(Bundle values) {

        }

        public void onFacebookError(FacebookError error) {
            SessionEvents.onLoginError(error.getMessage());
        }

        public void onError(DialogError error) {
            SessionEvents.onLoginError(error.getMessage());
        }

        public void onCancel() {
            SessionEvents.onLoginError("Action Canceled");
        }
    }

after this you will get sessionkey. Using session key you can post on wall through below code:

Bundle params = new Bundle();
                params.putString("caption", getString(R.string.app_name));
                params.putString("description", getString(R.string.app_desc));
                params.putString("picture", Utility.HACK_ICON_URL);
                params.putString("name", getString(R.string.app_action));

                Utility.mFacebook.dialog(Hackbook.this, "feed", params, new UpdateStatusListener());

public class UpdateStatusListener extends BaseDialogListener {
        @Override
        public void onComplete(Bundle values) {
            final String postId = values.getString("post_id");
            if (postId != null) {
                new UpdateStatusResultDialog(Hackbook.this, "Update Status executed", values)
                        .show();
            } else {
                Toast toast = Toast.makeText(getApplicationContext(), "No wall post made",
                        Toast.LENGTH_SHORT);
                toast.show();
            }
        }

        @Override
        public void onFacebookError(FacebookError error) {
            Toast.makeText(getApplicationContext(), "Facebook Error: " + error.getMessage(),
                    Toast.LENGTH_SHORT).show();
        }

        @Override
        public void onCancel() {
            Toast toast = Toast.makeText(getApplicationContext(), "Update status cancelled",
                    Toast.LENGTH_SHORT);
            toast.show();
        }
    }
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.