Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am going to logged in a web site using curl. Its going to logged in fine. Now I want to know the status of session, that it is alive or not. Because user may send request for different pages after logging in. My code is here. thanks

$url="https://mywebsite.com/login.pl";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookies.txt');
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, "username=xxxxxx&passwd=xxxxx&client=xxxxx");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_MAXREDIRS, 4);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$store = curl_exec ($ch);
curl_close ($ch);
share|improve this question

1 Answer

You'll need to grab cookies and use 'em in your next request, something like:

curl_setopt($ch,    CURLOPT_COOKIE,         $cookie); 
curl_setopt($ch,    CURLOPT_AUTOREFERER,    true); 
curl_setopt($ch,    CURLOPT_COOKIESESSION,  true); 
curl_setopt($ch,    CURLOPT_FAILONERROR,    false); 
curl_setopt($ch,    CURLOPT_FOLLOWLOCATION, false); 
curl_setopt($ch,    CURLOPT_FRESH_CONNECT,  true); 
curl_setopt($ch,    CURLOPT_HEADER,         false); 
curl_setopt($ch,    CURLOPT_POST,           false); 
curl_setopt($ch,    CURLOPT_RETURNTRANSFER, true); 
$result = curl_exec($ch); 
curl_close($ch); 
share|improve this answer
what does you mean by 'em. secondly how I will come to know that session is alive or dead. So I can know, would I need to reconnect or not. – nbhatti2001 Jun 21 '12 at 11:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.