2011-11-29 25 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のバグです。私はFacebookに報告しましたが、2011年12月以来、彼らはそれがバグを確認して、中位の優先順位を割り当てた後、フィードバックを得ていません。乾杯。

関連する問題