0

友達のFBウォールに画像を投稿しようとすると、選択した友達IDを取得し、base64文字列に変換された画像が以下のエラーとして応答を取得します

{Response:  responseCode: 200, graphObject: null, error: {HttpStatus: 200, errorCode: 3, errorType: null, errorMessage: Unknown method}, isFromCache:false}

以下の私のコード

if (hasPublishPermission()) {

        Request postToWall = new Request();

        for (GraphUser friend : selectedFriends) {
            Constants.showLog("Selected Frnd", friend.getId());
            Constants.showLog("Selected Pic", picture);

            Bundle parameters = new Bundle();
            parameters.putByteArray("message", "Greetings from Wish Well!".getBytes());
            parameters.putByteArray("link", "http://pictwist.cloudganga.com".getBytes());
            parameters.putByteArray("picture", picture.getBytes());
            parameters.putByteArray("target_id", friend.getId().getBytes());

            postToWall = Request.newRestRequest(Session.getActiveSession(), friend.getId() + "/feed", parameters, HttpMethod.POST);


            Constants.showToast(getApplicationContext(), "Posted image on friend wall");


        }

        postToWall.setCallback( new Request.Callback() 
        {

            @Override
            public void onCompleted(Response response) 
            {
                Constants.showLog("Responce Posting image", response.toString());

            }
        });
        Request.executeBatchAsync(postToWall);
    } 

助けてください

4

1 に答える 1