Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Post on user's friends facebook wall through android application

I am developing an Android application in which the user logs in using its facebook id. I can get all the information about the user and i even get its friends list with following methods

facebookClient.request("me")

facebookClient.request("me/friends")

My query is that i want to give flexibility to the user to invite its facebook friends. I dont know what extra stuff is to be done here. Any help will be appreciated.

like image 653
abhishek Avatar asked May 05 '11 11:05

abhishek


1 Answers

Check out:

How to post on facebook wall using Facebook android SDK, without opening dialog box

and

How to post message on facebook wall using Facebook android SDK integrate android app

Here's a small example that will post to a friend's wall (or if userId is null then to the currently logged in user's wall):

protected void postToWall(String userId)
{
    Bundle params = new Bundle();
    params.putString("message", _messageInput.getText().toString());
    params.putString("caption", "{*actor*} just posted a secret message.");
    params.putString("description", "A secret message is waiting for you.  Click the link to decode it.");
    params.putString("name", "A Secret Message For You");
    params.putString("picture", "http://www.kxminteractive.com/Content/images/app_logos/secretMessage.png");
    params.putString("link", "http://www.kxminteractive.com/decrypt/" + _lookupKey);        

    asyncRunner.request(((userId == null) ? "me" : userId) + "/feed", params, "POST", new WallPostRequestListener());       
}
like image 125
Kon Avatar answered Nov 09 '22 13:11

Kon