我正在尝试这样做
$url = "https://ajax.googleapis.com/ajax/services/search/web?v=1.0&"
. "q=Paris%20Hilton&userip=$_SERVER[SERVER_ADDR]";
// sendRequest
// note how referer is set manually
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, 'http://google.com');
$body = curl_exec($ch);
curl_close($ch);
// now, process the JSON string
$json = json_decode($body);
// now have some fun with the results...
这从他们的文档中非常直接,但它似乎没有返回任何内容,但 file_get_contents 对相同的 url 不是 https 而是 http
我也尝试只使用 http 进行 curl 但没有运气。任何帮助表示赞赏伙计们:)