今天在找要如何用python登入apache的認証網頁
找到httplib2
http://code.google.com/p/httplib2/
範例如下
import base64
import httplib2
h = httplib2.Http()
auth = base64.encodestring( 'id' + ':' + 'password' )
resp, content = h.request(
'http://10.0.0.56/all/',
'GET',
headers = { 'Authorization' : 'Basic ' + auth }
)
print resp #傳回html的標頭
print content #傳回html的內容
沒有留言:
張貼留言