我正在使用Facebook评论我想将页面网址发送到我的数据库或事件上的txt文件,而不会删除页面。我需要帮助..我试过很多..plz
网页网址代码 -
<?php
$protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https')
=== FALSE ? 'http' : 'https';
$host = $_SERVER['HTTP_HOST'];
$script = $_SERVER['SCRIPT_NAME'];
$params = $_SERVER['QUERY_STRING'];
$currentUrl = $protocol . '://' . $host . $script . '?' . $params;
?>
我的活动创建代码。
<script>
$("document").ready(function(){
//catch like event
FB.Event.subscribe('comment.create', function(href) {
< Code for sending page url to database or txt sholud be here >
});
//catch unlike event
FB.Event.subscribe('comment.remove', function(href) {
alert('You just unliked '+href);
});
});
</script>