在让Share Dialog正常工作时遇到问题。我的代码如下(在slim中):
doctype html
html
head
title test page!!!
javascript:
window.fbAsyncInit = function () {
FB.init({
appId: 'xxx',
xfbml: true,
version: 'v2.2'
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement(s);
js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
body
h1 Facebook custom share button test
a href='#' Testing!!
javascript:
document.getElementsByTagName('a')[0].addEventListener('click', function() {
FB.ui({ method: 'share', href: 'http://www.washingtonpost.com' }, function(resp) {});
return false;
});
Facebook(开发应用)上的我的应用设置设置正确(网站网址设置为http://localhost:3000/
)。
总之, 的所有内容 除了用户可以在此处输入对话框的消息外:
当帖子到达用户的时间轴Feed时,该值永远不会显示:
我想我正确地关注the documentation。我错过了什么?