上面 JavaScript 代码中的响应具有操作的 id。
{
id: “{action-instance-id}”
}
您需要通过数据库或其他方式存储您的操作。一旦你有了它,你就可以打电话反对它
/action-instance-id?fields=from.fields(id)
这将给出一个响应,例如
{
"from": {
"id": "{user-id}"
},
"id": "{action-instance-id}"
}
有很多方法可以存储这些数据,一种方法是 AJAX 到 PHP/MySQL。
我建议阅读它。以下内容尚未经过测试,只是给出了如何发送数据的想法。把它想象成伪代码
将 jQuery 添加到<head>
<script src="jquery.js"></script>
发送id
用户的,比如
<script type="text/javascript">
function postEndorse()
{
FB.api(
'/me/namespace:endorse',
'post',
{ photo: '<?php the_permalink(); ?>' },
function(response) {
if (!response || response.error) {
alert('Error Occurred' + response + " " + response.error);
} else {
FB.api(
response.id + "?fields=from.fields(id)",
function(resp) {
if (!resp || resp.error) {
alert('Error Occurred' + resp + " " + resp.error);
} else {
$.ajax({
type: "POST",
url: "fbdata.php",
data: { id: resp.from.id, actionid: resp.id }
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
}
});
}
});
}
</script>
然后在 fbdata.php 中类似
<?php
include("database.inc.php");
mysql_connect($server,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$id = mysql_real_escape_string($_POST['id']);
$actionid = mysql_real_escape_string($_POST['actionid']);
$database_entry = "INSERT INTO Actions (Id, Action) VALUES ('$id', '$actionid') ;
mysql_query($database_ntry) or die(mysql_error());
mysql_close();
?>
你应该阅读的参考资料