4

我在网上看到了一个关于使用 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')
});
4

1 回答 1

0

尝试此操作时是否收到错误消息?

请务必将您正在访问的所有服务器列入白名单。我相信您可以将其打开以进行测试。 http://docs.phonegap.com/en/1.9.0/guide_whitelist_index.md.html

于 2013-07-12T15:06:48.353 回答