Ссылка Codebliss привела меня на страницу документации, показывающую, как вызывать всплывающее диалоговое окно iframe на вашей веб-странице, используя их JS SDK . Сначала вы должны загрузить скрипт Facebook:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '[YOUR_APP_ID]', status: true, cookie: true, xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
Затем поместите что-то вроде на своей странице:
<a href="#" id="test">click me</a>
// some code
$(document).ready(function() {
$('#test').click(function() {
FB.ui({
method: 'feed',
name: 'Facebook Dialogs',
link: '[YOUR_WEBSITES_REGISTERED_URL_ON_FB]',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.',
message: 'Facebook Dialogs are easy!'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
});
});
});