0

有一个问题。我创建应用程序,它允许您添加页面选项卡。使用 facebook 对话框添加页面选项卡。我不会使用链接,将 uri 重定向到链接,该链接在应用程序设置“页面选项卡”中输入。怎么做才能添加链接?示例:如果在应用设置“test.com”中,我可以添加选项卡链接“test.com/test/index.html”

4

1 回答 1

0

这是代码:

window.fbAsyncInit = function() {
FB.init({
    appId      : '...',
    status     : true,
    cookie     : true,
    xfbml      : true  
});

$(document).trigger('fbload');  //  <---- THIS RIGHT HERE TRIGGERS A CUSTOM EVENT CALLED 'fbload'
};

function addToPage(url) {
// calling the API ...
var obj = {
    method: 'pagetab',
    redirect_uri: url
};

FB.ui(obj, function(response){
    if (response != null && response.tabs_added != null) {
        //response.tabs_added will have an array with the ids of the tabs selected by the user
    }
});
}

var user_form_link = splitted[0]+'forms/'+uid+'.html';
addToPage(user_form_link);
于 2013-07-09T10:19:10.983 回答