2019独角兽企业重金招聘Python工程师标准>>>
使用python访问
#!/usr/bin/python
#fileencoding:utf-8def testUrl():import urllib2import sysimport reimport base64from 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" % base64stringreq.add_header("Authorization", authheader)try:handle = urllib2.urlopen(req)except IOError, e:# here we shouldn't fail if the username/password is rightprint "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