Programmatically automating a web login
Posted
by icemanind
on Stack Overflow
See other posts from Stack Overflow
or by icemanind
Published on 2010-05-26T21:59:17Z
Indexed on
2010/05/26
22:41 UTC
Read the original article
Hit count: 321
I am trying to create a C# Winforms application that will automatically log me into a site and download data. Specifically, I want to have my application automatically log into my online banking site, log me in, and download my transaction history. I can do this manually by logging in through a web browser and downloading it. I am trying to automate this. I know I probably need to use HttpWebRequest and HttpWebResponse. Does anyone have an example of this or a framework of the steps I need to take to accomplish this? Keep in mind it will be secure site (https) and I will somehow have to collect session information and retain the session information for the duration of the session. Any thoughts?
© Stack Overflow or respective owner