Using webget on protected folders

Community Forums/General Help/Using webget on protected folders

RifRaf(Posted 2009) [#1]
I would like to use webget(from the archives) to access a folder I have set up with protection auth. username:pw.

is there a place in the format below that allows one to send the username and password ?
	www = OpenTCPStream (webHost$, 80)
	If www

                WriteLine www, "GET " +  webFile$ + " HTTP/1.1" ; GET / gets default page...
		WriteLine www, "Host: "+ webhost
		WriteLine www, "User-Agent: Blitz Webget"
		WriteLine www, "Accept: */*"
		WriteLine www, ""



RifRaf(Posted 2009) [#2]
im still interested in this, but ive went the encrypted/password protected zip route for now.

thanks


AJ00200(Posted 2009) [#3]
Do you mean an FTP username and password?


RifRaf(Posted 2009) [#4]
No, I can login ftp via code fine. My question was about http streams with protected folders.

Thanks though.