Facebook sdk - 让用户的朋友在其他平台上使用我的应用程序

时间:2016-07-22 13:44:30

标签: android ios facebook facebook-graph-api

我有一个在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网站上注册了两个应用程序平台。

0 个答案:

没有答案