balasun Posted April 11, 2009 Share Posted April 11, 2009 Hello all, I am using PHP curl function to login in secure server site by post the parameters. My code is as follows: $cookie_jar = tempnam('tmp/','cookie'); $url = "https://nameos site/login"; $POSTFIELDS = 'session_key=emailid&session_password=password&session_login=&session_rikey=invalid key'; $reffer = "http://www.securesitename.com"; $agent = "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)"; $cookie_file_path = "tmp/"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS,$POSTFIELDS); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_REFERER, $reffer); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); echo $result = curl_exec($ch); exit; curl_close($ch); But the login does not done. Pls help me to do login.. Is any special parameters need when we use CURL for secured site? Quote Link to comment https://forums.phpfreaks.com/topic/153608-help-me-to-use-php-curl/ Share on other sites More sharing options...
gffg4574fghsDSGDGKJYM Posted April 11, 2009 Share Posted April 11, 2009 Add this little code and show us \echo $result\ output. curl_setopt($ch, CURLOPT_HEADER, true); You have at least 1 error, cookiefile and cookiejar need a filename not a directory use something like that, you make 2 variable for this and don't use the right one : $cookie_file_path = "tmp/cookie.txt"; And make a if to be sure your curl_exec work like that : $output = curl_exec($ch); $info = curl_getinfo($ch); if ($output === false || $info['http_code'] != 200) { echo "No cURL data returned for $url [". $info['http_code']. "]"; if (curl_error($ch)) echo curl_error($ch); } else { echo $output; } Quote Link to comment https://forums.phpfreaks.com/topic/153608-help-me-to-use-php-curl/#findComment-807187 Share on other sites More sharing options...
balasun Posted April 11, 2009 Author Share Posted April 11, 2009 Thanks for your reply. $cookie_jar = tempnam('tmp/','cookie'); $url = "https://www.linkedin.com/secure/login"; $POSTFIELDS = '[email protected]&session_password=balasundar&session_login=&session_rikey=invalid key'; $reffer = "http://www.linkedin.com"; $agent = "Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)"; $cookie_file_path = "tmp/cookie.txt"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_USERAGENT, $agent); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS,$POSTFIELDS); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_REFERER, $reffer); curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path); curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path); curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); $info = curl_getinfo($ch); if ($output === false || $info['http_code'] != 200) { echo "No cURL data returned for $url [". $info['http_code']. "]"; if (curl_error($ch)) echo curl_error($ch); } else { echo $output; } curl_close($ch); The response for the above code is : HTTP/1.1 200 OK P3P: CP="CAO DSP COR CUR ADMi DEVi TAIi PSAi PSDi IVAi IVDi CONi OUR DELi SAMi UNRi PUBi OTRi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT POL PRE" Set-Cookie: lang=en; Path=/ Set-Cookie: leo_auth_token=LIM:44196530:a:1239453972:9e48176347a87ffcfd1c38665759382420525840; Expires=Sun, 11-Apr-2010 12:46:11 GMT; Path=/ Set-Cookie: s_leo_auth_token=LIM:44196530:s:1239453972:fd25536840e9f9d830dea845f0e999d3b90778f7; Path=/; Secure Set-Cookie: JSESSIONID=ajax:2419585623651592777; Path=/ Set-Cookie: visit=G; Expires=Thu, 29-Apr-2077 16:00:19 GMT; Path=/ Set-Cookie: bcookie=586984c0-7454-41bd-9f9a-6abca917912f; Expires=Thu, 29-Apr-2077 16:00:19 GMT; Path=/ Content-Type: text/html;charset=UTF-8 Content-Length: 1059 Date: Sat, 11 Apr 2009 12:46:12 GMT Server: Apache-Coyote/1.1 Set-Cookie: NSC_MC_QH_MFP=e2420fe529a3;expires=Sat, 11-Apr-09 14:17:45 GMT;path=/ Authentication does not done. Pls help me what i do next? Quote Link to comment https://forums.phpfreaks.com/topic/153608-help-me-to-use-php-curl/#findComment-807231 Share on other sites More sharing options...
gffg4574fghsDSGDGKJYM Posted April 11, 2009 Share Posted April 11, 2009 You shouldn't post your password here LinkedIN seem to have a API you should use that instead : http://www.linkedin.com/static?key=developers_apis And the HTTP code 200 mean it work. You can remove the curl_setopt($ch, CURLOPT_HEADER, true); And try again. But it seem to use AJAX so you may need to read the javascript on linkedin and figure all the request it made to the server and try to emulate it. Lot of job and probably a bad idea since you can use the api to do the same. Quote Link to comment https://forums.phpfreaks.com/topic/153608-help-me-to-use-php-curl/#findComment-807260 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.