我在网上看到了一个关于使用 facebook 允许的 sharer.php 页面的示例,我还可以通过 facebook 开发人员应用程序部分中的 APPID 跟踪谁使用它。
这是我的例子。
$(document).on('click', '.fb', function(e) {
window.open.href = 'http://www.facebook.com/sharer.php?s=100&p[title]=' + encodeURIComponent('this is a title') + '&p[summary]=' + encodeURIComponent('description here') + '&p[url]=' + encodeURIComponent('http://www.nufc.com') + '&p[images][0]=' + encodeURIComponent('http://www.somedomain.com/image.jpg')
});