从我的服务器向 google.com 发布请求时出现以下错误:
警告:file_get_contents(http://accounts.google.com):打开流失败:HTTP 请求失败!HTTP/1.0 405 Method Not Allowed in C:\...\index.php 第 23 行
我的代码如下:
$postdata = http_build_query(
array(
'code' => '####',
'client_id' => '####',
'client_secret' => '####',
'grant_type' => 'authorization_code'
)
);
$opts = array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://accounts.google.com', false, $context);
echo $result;