Benim gmail hesabımda bazı e-postaların içeriğini almak istiyorum. Bunu yapmak için PHP cURL uzantısını kullanmak istiyorum. Benim ilk denemede bu adımları takip:
- PHP kodu, çıkış içeriği https://www.google.com/accounts/ServiceLoginAuth.
- Tarayıcıda, kullanıcı giriş kullanıcı adı ve şifre giriş.
- PHP kodu, cookie.txt adlı bir dosyada çerezleri kaydedebilirsiniz.
- PHP kodu, https://mail.google.com/ cookie.txt ve çıkış içeriği alınan kurabiye ile birlikte isteği gönderin.
Aşağıdaki kod çalışmaz:
$login_url = 'https://www.google.com/accounts/ServiceLoginAuth';
$gmail_url = 'https://mail.google.com/';
$cookie_file = dirname(__FILE__) . '/cookie.txt';
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file);
curl_setopt($ch, CURLOPT_URL, $login_url);
$output = curl_exec($ch);
echo $output;
curl_setopt($ch, CURLOPT_URL, $gmail_url);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);
$output = curl_exec($ch);
echo $output;
curl_close($ch);