2

我无法使用以下脚本登录 gmail 帐户:

$email="email@gmail.com";
$password="password";
$gacookie="";

$ch = curl_init();

$postdata="Email=$email&Passwd=$password&continue=https://www.mail.google.com";
curl_setopt ($ch, CURLOPT_URL,"https://www.gmail.com");
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $gacookie);
curl_setopt ($ch, CURLOPT_COOKIEFILE, $gacookie);
curl_setopt ($ch, CURLOPT_REFERER, 'https://www.google.com');
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$result = curl_exec ($ch);
curl_close($ch);
echo $result;<br>

有任何想法吗 ?

4

2 回答 2

1

There is probably a redirect in there at which point your post data is gone.

Try adding CURLOPT_POSTREDIR => 2

于 2013-01-18T13:14:13.180 回答
0

Try using the open inviter. Open source

http://openinviter.com

于 2013-01-18T13:14:04.413 回答