LoadBank from http with user/pass url?

BlitzMax Forums/BlitzMax Beginners Area/LoadBank from http with user/pass url?

gekkonier(Posted 2009) [#1]
Hi, I have something like this:
SuperStrict
Local ImageBank:TBank
ImageBank = LoadBank(\"http://User:Pass@...")
If Not ImageBank
	Print "error"
	End
EndIf
Print "success"


I found an example how to use this - heres the LoadBank Part:
ImageBank = LoadBank("http::www.test.de/myimage.jpg")


Please note, these urls don't exist, but you can see how the urls are formatted!

So, how can I use a user and pass in the url (if it's possible?)


gekkonier(Posted 2009) [#2]
hm, the tag parser interprets my "url" wrong.
so image the [AT] as @ please.

here is the above nonworking code again:
SuperStrict
Local ImageBank:TBank
ImageBank = LoadBank("http://User:Pass[AT]myweb.site.com/image.jpg")
If Not ImageBank
	Print "error"
	End
EndIf
Print "success"