5

我正在使用 file_get_contents() 将信息发送到 facebook graph api

但有时我会收到错误消息。

我发现必须使用 cURL 而不是 file_get_contents()。

问题是,我不知道如何将 cURL 与我需要传递的 URL 一起使用。

如果我转换

file_get_contents($graph_url);

进入cURL,代码是什么?

这是 $graph_url 的内容

$graph_url= "https://graph.facebook.com/me/photos?"
  . "url=" . urlencode($photo_url)
  . "&message=" . urlencode('')
  . "&method=POST"
  . "&access_token=" .$access_token;
4

1 回答 1

17
    $graph_url= "https://graph.facebook.com/me/photos";
  $postData = "url=" . urlencode($photo_url)
  . "&message=" . urlencode('')
  . "&access_token=" .$access_token;
                
        $ch = curl_init();

        curl_setopt($ch, CURLOPT_URL, $graph_url);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

        $output = curl_exec($ch);

        curl_close($ch);
于 2013-03-04T14:04:57.247 回答