5

我正在开发一个Android应用程序,其中用户使用其 facebook id 登录。我可以获取有关用户的所有信息,甚至可以通过以下方法获取其朋友列表

facebookClient.request("我")

facebookClient.request("我/朋友")

我的问题是我想给用户灵活性来邀请它的 facebook 朋友。我不知道这里要做什么额外的事情。任何帮助将不胜感激。

4

2 回答 2

9

查看:

如何使用 Facebook android SDK 在 Facebook 墙上发帖,而不打开对话框

如何使用 Facebook android SDK 在 facebook 墙上发布消息集成 android 应用程序

这是一个小例子,它将发布到朋友的墙上(或者如果 userId 为 null,则发布到当前登录的用户的墙上):

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());       
}
于 2011-05-05T13:08:51.543 回答
0

使用它在 id(uid) 的朋友墙上发送消息:

Bundle params = new Bundle();                           
params.putString("message", "hello ...");
Utility.mAsyncRunner.request(uid+"/feed", params, "POST", new FriendRequestListener(), null);
于 2012-06-13T14:11:28.673 回答