When I open the Facebook share dialog dialog, it looks empty. I inspect the item and find that the page has content, but the height of the generated iframe body block = 0px
My code is:
//Create a new Graph Object FB.api( 'me/objects/video.other', 'post', { 'object': { 'type': 'video.other', 'url': fileUrl, 'secure_url': fileUrl, 'video': fileUrl, 'image': imageUrl, 'title': title, 'description': shareUrl } }, //Call the FB Share dialog - referencing newly created object. function(response) { FB.ui({ method: 'share_open_graph', action_type: 'og.likes', display: !this.isMobile ? 'popup' : 'touch', mobile_iframe: true, action_properties: JSON.stringify({ object: response.id, }) }, function(response){}); } );