在外部网站(不是fb页面)上想像按钮一样点击按钮,它会显示某些内容。
如果我没有错,但需要更多的帮助,我认为它可能会起作用的代码!
<div id="fb-root"></div>
<fb:like send="false" layout="button_count" width="100" show_faces="false"></fb:like>
<div id="hidden_content" style="display:none;">Thank You Dear</div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '185373538XXXXXX', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
FB.Event.subscribe('edge.create', function() {
$('#hidden_content').show();
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
所以任何想法! 〜非常感谢
答案 0 :(得分:0)
这是我的想法(因为你正在寻找想法和参考资料)。
edge.create只会在用户喜欢该链接时触发。您需要说明当用户访问之前喜欢它的页面时会发生什么。我建议找一种方法来确定是否已经出现过这种情况。
以下是一些通过以下方式阅读的文档:
这可以通过object_url table获取您网页网址的图表ID
SELECT url, id, type, site FROM object_url WHERE url = "http://developers.facebook.com/"
然后看看您是否可以在stream posting或like
中追踪它