Jump to content

Recommended Posts

Hi I have tried to develop a curl script to access a users contacts at their request have been doing this for days and am getting nowhere. any tips would be appreciated. Especially if there is an easier way of doing this I have tried libgmailer but it doesn't work.

 

<?php
ini_set ("display_errors", "1");
error_reporting(E_ALL);
$login = "$login";
$passw = "$password";

$url = "https://www.google.com/accounts/ServiceLogin";
$params = "Email=$login&Passwd=$passw&PersistentCookie=yes";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);

$html = curl_exec($ch);

curl_setopt($ch, CURLOPT_URL, "https://www.google.com/accounts/ManageAccount");
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HTTPGET, 1);

$html = curl_exec($ch);

print $html;

?>

I get the following displayed on the page each time this submits I think it is a cookie error??
cookie.txt is chmod 777 so the curl_setopt can write to it but maybe i am way off there??



Link to comment
https://forums.phpfreaks.com/topic/155664-solved-curl-problems/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.