Jump to content

cURL - Login at myVodafone


efegue

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.