How would I write a script to download files from this site. Is it possible to supply the login and password with the url?
http://feeds.itunes.apple.com/feeds/epf/
Would I format the url like this?
WebClient Client = new WebClient();
Client.DownloadFile("http://feeds.itunes.apple.com/feeds/epf/v3/full/current/itunes20110511.tbz.md5?username=myusername&password=mypassword", @"C:\folder\file.md5");
Yes, just set the
WebClient'sCredentialsproperty to aNetworkCredentialsinstance with the username/password. For example: