我已经制作了一个应用程序,我正在其中获取我所有FACEBOOK 朋友的列表,现在我想要当我点击任何朋友行时,我将能够在他/她的墙上发帖。
那么我需要提供什么权限以及我需要编写什么类型的代码才能做到这一点,
喜欢:我仍然给予以下许可并写在下面的代码onListItemClick
权限:
mFacebook.authorize(main, new String[] { "publish_stream",
"friends_birthday", "friends_photos" }, new MyAuthorizeListener());
代码:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
MyFriend friend = (MyFriend) this.getListAdapter().getItem(position);
}
我正在获取 FbId、姓名、生日和图片
public class MyFriend {
private String fbID = " ";
private String name = " ";
private String bday = " ";
private String pic = " ";
}