Search code examples
androidfacebookfacebook-wall

I want to post a string msg on facebook's wall


I have my appId for facebook. Which type of configuration and auth should I require.

Now I want to post a String message on Facebook wall when some condition true. What should I do?


Solution

  • Please go through below link . It might helps you a lot.

    Facebook android sdk

    you can also send message directly using the below code.

    Bundle params = new Bundle();
    params.putString("message", message);
    mFacebook.request("me/feed", params, "POST");
    

    you can create facebook object and using request method you can directly post to user wall. Before posting on wall you must have to login into facebook .