Having a problem with cUrl can't login to espy.com

tregoal

Junior Member
Joined
Oct 11, 2014
Messages
134
Reaction score
36
Hi everyone,
Im having some problem with cUrl, i want to login to www.espn.com/login in order to take some content protected using php.
I have done many tests but not able to login. Any one who can help let me know.

Thanks
 
Open the browser's developer tools, login to the website, go to the tab network, right click on the login request and choose "copy as cURL"

Have fun
 
If you want to login once and do tasks.

download "cookies.txt" a Google Chrome extension. (I can't give link because of message count restrictions)
Login manually to the website and export your cookies.
Whenever you want to do any action on the website, add it to curl by
Code:
curl_setopt($ch, CURLOPT_COOKIEFILE, $ckfile);
 
Back
Top