2011-11-29 60 views
1

使用Facebook Javascript SDK(因爲FBml不起作用了),使用我的Facebook應用程序發佈到牆上根本不顯示名稱,說明和標題。我嘗試添加鏈接並顯示,刪除了描述,但似乎沒有解決問題。名稱說明標題不會出現在牆貼中

任何幫助或注意這是有幫助的。

var description = $(this).parent().parent().children('.description').html(); 
var name = $(this).parent().parent().children('.name').html(); 

FB.ui(
    { 
    method: 'feed', 
    attachment: 
    { 
     name: name, 
     caption: 'Test App', 
     description: description, 
     link: appLink, 
     href: appLink      
    }, 
    action_links: 
    [ 
     { text: 'Test App', href: 'appLink' } 
    ] 
    }, 
    function(response) 
    { 
    if (response && response.post_id) 
    { 
     alert('Post was published.'); 
    } 
    else 
    { 
     alert('Post was not published.'); 
    } 
    } 
); 

回答

1

這實際上是一個facebook bug。我已將它報告給Facebook,但自從2011年12月以來,他們已確認它存在漏洞並被賦予中等優先級,因此未收到任何反饋。乾杯。

相關問題