我创建了一个名为“意见”的自定义对象来围绕它构建自定义故事。
我正在尝试使用 javascript sdk 从我的网站添加一些应用程序拥有的对象。
facebook给我的示例代码是:
FB.api(
'me/objects/[namespace]:opinion',
'post',
{
app_id: xxxxxxxx,
type: "[namespace]:opinion",
url: "http://samples.ogp.me/331257847005141",
title: "Sample Opinion",
image: "https://fbstatic-a.akamaihd.net/images/devsite/attachment_blank.png",
description: ""
},
function(response) {
// handle the response
}
);
响应是一个错误(OAuth 异常):
2500: Cannot specify type in both the path and query parameter.
如果我删除type
参数,我会得到另一个错误:
(#100) The parameter object is required
如果我[namespace]:opinion
从路径中删除,则相同。
我不明白为什么,谷歌搜索后没有关于此的参考。
为什么这个?我可以参考任何资源来解决这个问题吗?