使用python访问
#!/usr/bin/python#fileencoding:utf-8def testUrl(): import urllib2 import sys import re import base64 from urlparse import urlparse #下载路径 theurl = 'http://ip/release/LHJH/Server/er_service.war' username = 'username' password = 'username' req = urllib2.Request(theurl) base64string = base64.encodestring( '%s:%s' % (username, password))[:-1] authheader = "Basic %s" % base64string req.add_header("Authorization", authheader) try: handle = urllib2.urlopen(req) except IOError, e: # here we shouldn't fail if the username/password is right print "It looks like the username or password is wrong." sys.exit(1) thepage = handle.read() print thepageif __name__ == "__main__": testUrl()
从浏览器访问的方式:
http://username:password@ip/release/LHJH/Server/er_service.war