1

私は Android での Facebook SDK 開発の初心者で、Facebook プロファイルから FriendList 情報を取得するための Graph API クエリを作成しています。

最新のSDKを使用しています。解決策はありますがSOF w.r.t old sdk、最新のキットを使用して実装したいと考えています。

簡単に解析できた友達のとで応答を/me/friends返すクエリ。しかし、クエリを実行して誕生日などの追加情報を取得しようとすると、無効な応答が返されます。JSONnameIDs/me/friends/?fields=birthday

以下の方法でfriends_birthdayも権限を設定しました。onCreateView

これが私のコードです:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.activity_main, container, false);
    LoginButton authButton = (LoginButton) view.findViewById(R.id.authButton);
    authButton.setFragment(this);
    authButton.setReadPermissions(Arrays.asList("user_location", "user_birthday", "user_likes","read_friendlists","friends_birthday"));   /*setting permissions*/
    userInfoTextView = (TextView) view.findViewById(R.id.userInfoTextView);
    return view;
}


public void onResume() {
    super.onResume();
    Session session = Session.getActiveSession();
    if (session != null &&
           (session.isOpened() || session.isClosed()) ) {
        onSessionStateChange(session, session.getState(), null);
    }
    uiHelper.onResume();
}


private void onSessionStateChange(Session session, SessionState state, Exception exception) {
    if (state.isOpened()) {
        Log.i(TAG, "Logged in...");
        userInfoTextView.setVisibility(View.VISIBLE);
        Settings.addLoggingBehavior(LoggingBehavior.REQUESTS);
        String graphpath="/me/friends?fields=name,birthday";

        Request.executeGraphPathRequestAsync(session, graphpath, new Request.Callback(){

            @Override
            public void onCompleted(Response response) {
                try {
                        userInfoTextView.setText(buildUserInfoDisplay(response));
                } catch (JSONException e) {

                    Log.d(TAG,"JSON exception");
                    e.printStackTrace();
                }

            }



        });
    }


 else if (state.isClosed()) {
        Log.i(TAG, "Logged out...");
        userInfoTextView.setVisibility(View.INVISIBLE);
    }
}



 private String buildUserInfoDisplay(Response response) throws JSONException  {

        if(response.getError()!=null)
        Log.d(TAG, "null reponse returned...");
    GraphObject go  = response.getGraphObject();
    JSONObject  jso = go.getInnerJSONObject();
        JSONArray   arr = jso.getJSONArray( "data" );
        JSONObject json_obj = arr.getJSONObject(2);   /*getting the third friend from the list*/
        String birthday   = json_obj.getString( "birthday"); 
        return birthday;
}
4

1 に答える 1

0

すべての友達に誕生日のエントリがあるわけではありません。そのため、直接読み取る前に「誕生日」タグが利用可能かどうかを確認する必要があります。結果は Graph Explorer でテストできます

https://developers.facebook.com/tools/explorer?method=GET&path=me%2Ffriends%3Ffields%3Dname%2Cid%2Cbirthday

于 2013-02-08T16:44:14.227 に答える