FB.UI params doesn't affect to dialog window

浪子不回头ぞ 提交于 2019-12-22 17:40:24

问题


I want to add Facebook share button to my site. I created app on Facebook. Ran local server. Added to host-file 127.0.0.1 dev.mysite.com and added domain mysite.com and website http:/ /mysite.com(without space) to app settings in Facebook. Trying:

function shareOnFacebook(){
    FB.ui({
        method: 'share',
        display: 'popup',
        title: 'myTitle',
        href: 'mysite.com',
        caption: 'mysite.com',
        picture: 'http://www.picturesource.com/path/picture.jpg',
        description: 'myDescription'
    }, function(response) {
         if(response && response.post_id){}
         else{}
    });  	
}

but in dialog window infromation is filled without params, that i sent with function FB.UI. Did i miss something necessary for having permission to put information to the dialog window?


回答1:


Since the API v2.9, this is no longer possible to customise the content of the feed dialog : https://developers.facebook.com/docs/sharing/reference/feed-dialog#deprecated-params

The only part you can customise is the "quote" content, which look like that :

Your code doesn't work because even if you force the API v2.5 or v2.8 with the "FB.init" call, each new Facebook APP is using the v2.9 :

If you don't have any old Facebook APP in your own repository (< v2.9), you can't use the good old feed dialog.




回答2:


You have to use the Feed Dialog for that, not the Share Dialog. The Share Dialog basically only accepts the URL to share and gets the OG Data from that URL.



来源:https://stackoverflow.com/questions/43543828/fb-ui-params-doesnt-affect-to-dialog-window

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!