gpt4 book ai didi

android - 获取 facebook 用户的好友列表

转载 作者:行者123 更新时间:2023-11-29 21:07:58 38 4
gpt4 key购买 nike

<分区>

我制作了一个 android 应用程序,它将获取 facebook 登录用户的所有 friend 。但它并没有获取所有 friend 。任何人都可以告诉我问题是什么并帮助我完成正确的过程。现在我正在使用下面的代码。

请求 rt=Request.newMyFriendsRequest(session, new GraphUserListCallback() {

        @Override
public void onCompleted(List<GraphUser> users, Response response) {

if(response.getError()==null){

ListIterator<GraphUser> graphUser=users.listIterator();
ArrayList<String> friends=new ArrayList<String>();
while(graphUser.hasNext()){
GraphUser friendObject=graphUser.next();
friends.add(friendObject.getName());
}
System.out.println(friends);

TextView listOfFriends=(TextView) findViewById(R.id.welcome);
listOfFriends.setText("hello"+friends);
}
else{
Toast.makeText(MainActivity.this, response.getError().getErrorMessage(), Toast.LENGTH_SHORT).show();
}


}
});
rt.executeAsync();

请建议我该怎么做?

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com