I have tried so many ways but failed to logged in purevolume.com programmatically!
login URL: http://www.purevolume.com/login
can anybody give it a try and provide sample code to achieve this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Something like this should work… You need to do an http post request and send your username and password. To remain “logged in” you need a cookie container that you then reuse for all other requests.
Edit: Updated code that is tested. An initial GET request to /login was needed to have the session cookie before doing the POST login. I’ve also added some HTTP headers to make it identical to a “normal” request from a browser.