xxx = ok isn't what you should be sending in on the post, do this using Chrome and open developer tools and you will see what was requested and what was sent back... take a look at my post where i gave you the request/response info
Really it looks like you just need to post to this url and you will get the cookie:
- Code: Select all
http://www.movie2k.to/xxxcheck.php?confirm=1
The 'confirm=1' is the key, the uri parm seems to just tell it what page to redirect to
Then read the thread rogerthis started about how to save and then retrieve the cookie
- Code: Select all
net.http_POST(url)
net.save_cookies(cookie_path)
...
..
net.set_cookies(cookie_path)
net.http_GET(url)
