web-dev-qa-db-ja.com

(#803)リクエストしたエイリアスの一部が存在しません:{education-experience-id} Android

Facebookからユーザーの教育の詳細と仕事の説明を取得しようとしています。ログインに成功し、Accessトークンを取得します。しかし、私は欲しい詳細を得ることができません

私が使用しているコード:-

    public void getUserExpandEducation() {

    new GraphRequest(
            AccessToken.getCurrentAccessToken(),
        "/{education-experience-id}",  //"/{user_education_history}",//  
            null,
            HttpMethod.GET,
            new GraphRequest.Callback() {
                public void onCompleted(GraphResponse response) {
                    Log.d("fb response",response.toString());
                }
            }
    ).executeAsync();
}

誰か返信してもらえますかエラーが発生します(#803)リクエストしたエイリアスの一部が存在しません:{education-experience-id}

5

最後に、私はこのコードによって完全な仕事と教育の詳細を得ました:

GraphRequest request = GraphRequest.newMeRequest(
            accessToken,
            new GraphRequest.GraphJSONObjectCallback() {
                @Override
                public void onCompleted(
                        JSONObject object,
                        GraphResponse response) {

                    FirstNameSocial = object.optString("first_name");
                    LastNameSocial = object.optString("last_name");
                    GenderSocial = object.optString("gender");
                    EmailSocial = object.optString("email", "");
                    id = object.optString("id");


                    if (!EmailSocial.equals("")) {
                        login_type = Config.Login_Type_facebook;
                        callAPI(EmailSocial, id, "");

                    } else {
                        Toast.makeText(getApplicationContext(), "Permision Denied", Toast.LENGTH_LONG)
                                .show();
                    }

                }
            });

    Bundle parameters = new Bundle();
    parameters.putString("fields", "id,name,email,birthday,gender,first_name,last_name,picture,education,work");
    request.setParameters(parameters);
    request.executeAsync();

誰かを助けるかもしれません!ハッピーコーディング:)

4

その許可を得て承認したことを確認してください:user_education_history

教育IDのリストを取得するためのAPI呼び出し: https://developers.facebook.com/tools/Explorer/?method=GET&path=me%3Ffields%3Deducation

コード内で、次の文字列を結果の教育IDの1つに置き換える必要があります。{education-experience-id}

例えば:

new GraphRequest(
    AccessToken.getCurrentAccessToken(),
    "/12345",
        null,
        HttpMethod.GET,
        new GraphRequest.Callback() {
            public void onCompleted(GraphResponse response) {
                Log.d("fb response",response.toString());
            }
        }
).executeAsync();
3
luschn