在Facebook SDK(JavaScript)中,将页面标签添加到页面的API:
/* make the API call */
FB.api(
"/{page-id}/tabs",
"POST",
{
"object": {
"app_id": "{app-id}"
}
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
我已按原样尝试此API调用,但它无法正常工作,错误消息说:
(#100)一个且只有一个参数' tab'或者' app_id'必须提供
答案 0 :(得分:0)
我认为很明显你只需要提供一个参数
答案 1 :(得分:0)
/* make the API call */
FB.api(
"/{page-id}/tabs",
"POST",
{
"app_id": "{app-id}"
},
function (response) {
if (response && !response.error) {
/* handle the result */
}
}
);
以这种方式传递。