好的,所以终于找到了一个不错的解决方案,并且没有卷曲。这是我在 ajax 函数 onclick 中调用的脚本:
<?php
$access_token = $_GET['token'];
$post_id = $_GET['id'];
function do_post_request($url, $data, $optional_headers = null)
{
$params = array('http' => array(
'method' => 'POST',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
echo "error";
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data");
}
return $response;
}
$data = "access_token=".$access_token;
$url = 'https://graph.facebook.com/'.$post_id.'/likes';
$result = do_post_request($url, $data, $optional_headers = null);
?>
同样在我测试过的工作代码中, $post_id 的用户 id 的帖子首先是这样的: SOURCEUSERID_POSTID
从这篇文章的组合中得到了这个解决方案 - http://wezfurlong.org/blog/2006/nov/http-post-from-php-without-curl/
还有这个 -喜欢 Facebook graph api 上的帖子
希望这对其他人有所帮助!