Using webget on protected folders
Community Forums/General Help/Using webget on protected folders| 
 | ||
| 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, ""
 | 
| 
 | ||
| im still interested in this, but ive went the encrypted/password protected zip route for now. thanks | 
| 
 | ||
| Do you mean an FTP username and password? | 
| 
 | ||
| No, I can login ftp via code fine.  My question was about http streams with protected folders. Thanks though. |