我有一个在facebook上注册的应用程序,它有两个版本在IOS和Android上运行。当我尝试从Android接收好友列表时,我只能看到使用Android版应用的用户,并且无法看到ios注册的好友。有没有办法在任何平台上查看我的应用程序的所有用户?
我使用标准请求来获取Android上的朋友:
public boolean onMenuItemClick(MenuItem item) {
Profile profile =getFbProfile();
if(profile!=null) {
String userId =profile.getId();
String request = String.format("/%s/friends",userId);
new GraphRequest(
getFbToken(),
request,
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
String resp = response.getRawResponse();
}
}).executeAsync();
}
}
我在facebook dev网站上注册了两个应用程序平台。