Answer by Matthew Williams for Facebook Dialog Feed (display parameter not...
According the Facebook documentation for "display modes" (https://developers.facebook.com/docs/reference/dialogs/), the "popup" attribute does not automatically create your popup for you, instead it...
View ArticleAnswer by Parthi for Facebook Dialog Feed (display parameter not working)
Use this code it worksFB.init({appId: "Your AppId",show_error:true, status: true, cookie: true}); function postToFeed() { // calling the API ... var obj = { method: 'feed', link:...
View ArticleAnswer by Andy for Facebook Dialog Feed (display parameter not working)
I thought I had this issue for quite a while before I discovered that display=popupdoes not open the dialog as a popup, rather it formats the dialog so that it looks good in a popup.I ended up using...
View ArticleAnswer by ifaour for Facebook Dialog Feed (display parameter not working)
Something like: <a class="facebook_icon" href="" target="_blank"></a>Don't forget that you can always use the FB.ui method. Just go to the test console, click on examples and choose "feed"...
View ArticleFacebook Dialog Feed (display parameter not working)
I've followed the documentation to add Facebook feed dialog to my site. My one issue is that the dialog is not opening as a popup, even though I am setting the display parameter to "popup". <a...
View Article