我正在为我的工作创建一个Gmail僵尸程序,它会检查Gmail帐户并查看它们是否需要电话验证,但我遇到了问题 - 出于某种原因,当我尝试使用时,它会给我一个错误拨打电话并返回html页面。
<?php
$url="http://accounts.google.com/AccountLoginInfo";
$data = array('Email' => 'gmail_username', 'Passwd-hidden' => 'gmail_pass');
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
//print($result);
if ($result === FALSE) {
print("error");
}
?>