0

facebook-android-sdk 4.8.1 を使用する

GameRequestContent API を使用してゲーム リクエストをフレンドに送信したい

 i have a real id for my friend ,then i call GameRequestContent a to send a game request

like this

GameRequestContent content = new GameRequestContent.Builder().setMessage("Come play this level with me")
                             .setData("hello")
                             .setRecipients(Arrays.asList("117157035316159"))
                             .setActionType(GameRequestContent.ActionType.SEND)
                             .setObjectId("117157035316159")
                             .build();
                     GameRequestDialog g = new GameRequestDialog(getActivity());
                     g.registerCallback(callbackManager, new FacebookCallback<GameRequestDialog.Result>() {
                         @Override
                         public void onSuccess(GameRequestDialog.Result o) {

                             Log.i("onSuccess", o.toString());
                         }

                         @Override
                         public void onCancel() {
                             Log.i("onSuccess", "onCancel");
                         }

                         @Override
                         public void onError(FacebookException error) {
                             Log.i("onError", error.getMessage());
                             error.printStackTrace();
                         }
                     });
                     g.show(content);

ユーザー名を受信者の離れた場所に入れようとしましたが失敗しました!!! 私へのエラーメッセージ応答: { httpResponseCode: -1, facebookErrorCode: 2, facebookErrorType: null, メッセージ: 抱歉,此功能现在不可: 处理此请求时发生错误,请稍后再试(関数は利用できません今、リクエストを処理するときにエラーが発生しました。後で試してください)

理由を知りたいです〜どうすればいいですか

4

0 に答える 0