我正在尝试使用 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
但我不断收到此错误:
{响应:responseCode:400,graphObject:null,错误:{HttpStatus:400,errorCode:2500,errorType:OAuthException,errorMessage:无法在路径和查询参数中指定类型。},isFromCache:false}
任何想法这是什么意思?当我能做对时,我会得到什么?我不太确定... PS 在我的预定义对象上发布操作可以正常工作,只是这个问题。