我必须使用此代码在 Facebook 用户的朋友 wall.im 上发帖
Facebook fb = Facebook.getInstance(as);
User user = fb.getCurrentUser();
User[] friends = user.getFriends();
if (friends != null && friends.length > 0) {
for (int i=0; i if (friends != null && friends.length > 0)
{
friends[i].publishStatus("TEsting App");
}
}
请有人为此提供代码....