Post on user's friends facebook wall through android application

ⅰ亾dé卋堺 提交于 2019-11-27 23:17:13
Kon

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());       
}
Nishant

use this to send message on friends wall of id(uid):

Bundle params = new Bundle();                           
params.putString("message", "hello ...");
Utility.mAsyncRunner.request(uid+"/feed", params, "POST", new FriendRequestListener(), null);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!