efegue Posted July 16, 2008 Share Posted July 16, 2008 Hello there, I'm having some trouble at trying to make a script to login to myvodafone account at vodafone's website. Can somebody give me some help? Here's what I got so far: // post data $data = array('Login1:userid' => 'phone number', 'Login1:password' => 'user password'); $ch = curl_init(); curl_setopt($ch, CURLOPT_COOKIEJAR, "cookies.txt"); curl_setopt($ch, CURLOPT_COOKIEFILE, "cookies.txt"); curl_setopt($ch, CURLOPT_URL, "https://my.vodafone.pt/guest/"); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1"); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_exec($ch); I've removed the comments because they were in portuguese.. The script doesnt "SUBMIT" the form, dunno why. I've tested this script with my wordpress site and it works fine! Thanks for your help Link to comment https://forums.phpfreaks.com/topic/115071-curl-login-at-myvodafone/ Share on other sites More sharing options...
Lautarox Posted July 16, 2008 Share Posted July 16, 2008 does this script saves the cookies when you login or you use you'r own cookies? Link to comment https://forums.phpfreaks.com/topic/115071-curl-login-at-myvodafone/#findComment-591870 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.