2014-07-20 47 views
0

在Facebook的SDK(JavaScript的),該API頁面標籤添加到頁面的Facebook頁面標籤:添加使用JavaScript SDK

/* 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),其中,僅必須提供

回答

0

我認爲這是顯而易見的,你只需要提供一個PARAMS「標籤」或「APP_ID」之一參數

0
/* make the API call */ 
FB.api(
"/{page-id}/tabs", 
"POST", 
{ 
     "app_id": "{app-id}" 
    }, 
function (response) { 
    if (response && !response.error) { 
    /* handle the result */ 
    } 
} 
); 

這樣通過。