我正在开发一个 Android 应用程序,用户使用其facebook ID登录该应用程序。 我可以获得有关用户的所有信息,我甚至可以通过以下方法获取其朋友列表
facebookClient.request( “ME”)
facebookClient.request( “我/朋友”)
我的疑问是,我希望为用户提供灵活性,以邀请其Facebook好友。 我不知道这里有什么额外的东西要做。 任何帮助将不胜感激。
答案 0 :(得分:9)
退房:
How to post on facebook wall using Facebook android SDK, without opening dialog box
和
How to post message on facebook wall using Facebook android SDK integrate android app
这是一个小例子,会发布到朋友的墙上(或者如果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());
}
答案 1 :(得分:0)
使用此命令在id(uid)的朋友墙上发送消息:
Bundle params = new Bundle();
params.putString("message", "hello ...");
Utility.mAsyncRunner.request(uid+"/feed", params, "POST", new FriendRequestListener(), null);