次のようにFacebook SDKを使用してカスタムオブジェクトを作成しようとしています:
Bundle params = new Bundle();
params.putString("type", "android_themes:background");
params.putString("url", "http://samples.ogp.me/471503979602314");
params.putString("title", "Sample Background");
params.putString("description", "");
Request request = new Request(
Session.getActiveSession(),
"me/objects/android_themes:background",
params,
HttpMethod.POST
);
Response response = request.executeAndWait();
// handle the response
しかし、私はこのエラーを受け取り続けています:
{Response: responseCode: 400, graphObject: null, error: {HttpStatus: 400, errorCode: 2500, errorType: OAuthException, errorMessage: path と query パラメータの両方で型を指定できません。}, isFromCache:false}
これはどういう意味ですか?そして、それを正しく行うことができたときに何が得られますか? よくわかりません... 事前定義されたオブジェクトに対する PS Publishing アクションは正常に動作しますが、この問題だけです。