they can send you session cookies on first load
try making a request with CURLOPT_COOKIEJAR and then do a login request using CURLOPT_COOKIEFILE and CURLOPT_COOKIEJAR
also for hell of it, this is the function that I do to make queries cleaner
function curl_http_request ($url, $options)
{
$handle = curl_init($url);
curl_setopt_array($handle, $options);
ob_start();
$buffer = curl_exec($handle);
ob_end_clean();
curl_close($handle);
return $buffer;
}
usage example
$options = array(
CURLOPT_RETURNTRANSFER => TRUE
);
curl_http_request($url, $options);
it should work
$curloptions = array(
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',
CURLOPT_TIMEOUT => 60,
CURLOPT_COOKIEJAR => $cookie,
CURLOPT_COOKIEFILE => $cookie,
CURLOPT_REFERER => 'http://www.meetup.com/'
);
$username = 'bobsmit@gmail.com';
$password = 'bobsmit@gmail.com';
$cookie = 'cookie.txt';
$handle = fopen($cookie, 'w');
fclose($handle);
curl_http_request('http://www.meetup.com/login/', $curloptions);
curl_http_request('http://www.meetup.com/login/',
array(
CURLOPT_POSTFIELDS => 'email=' . urlencode($username) . '&password=' . urlencode($password) . '&rememberme=on&submitButton=Login&returnUri=http%3A%2F%2Fwww.meetup.com%2F&op=login',
CURLOPT_POST => TRUE
), $curloptions
);
echo curl_http_request('http://www.meetup.com/account/',
array(
CURLOPT_FOLLOWLOCATION => TRUE,
CURLOPT_RETURNTRANSFER => TRUE
), $curloptions
);
function curl_http_request ($url, $moreoptions = array(), $options = array())
{
foreach ($moreoptions as $k => $v) $options[$k] = $v;
$handle = curl_init($url);
curl_setopt_array($handle, $options);
ob_start();
$buffer = curl_exec($handle);
ob_end_clean();
curl_close($handle);
return $buffer;
}
hope this works :)
source
share