- 论坛徽章:
- 0
|
http://show.qq.com/live/nike_coolface/
这里可以弄自己的 qq秀.
import httplib
def imageToURL( aPath ):
# read the binary data of the picture
data = open(aPath, 'rb').read()
print str(len(data))
headers = { "Content-type": "application/octet-stream;charset=ISO8859-1",
"Referer":"http://qqshow2-item.qq.com/1000000/62/02/",
"Accept-Encoding":"gzxip, defxlate",
"x-flash-version":"10,0,42,34",
"Accept-Language": "zh-CN",
"UA-CPU":"x86",
"User-Agent":"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; SV1; .NET CLR 1.1.4322)",
"Content-Length":str(len(data)),
"Host": "show.qq.com",
"Connection":"close",
"Accept": "*/*",
"Cache-Control":"no-cache",
#"Transfer-Encoding": "chunked",
"Cookie": ";"
}
conn = httplib.HTTPConnection( "show.qq.com" )
conn.request( "POST", "/cgi-bin/qqshow_user_coolfaceupload", data, headers )
response = conn.getresponse( )
print response.read( )
print response.status
conn.close( )
if __name__ == "__main__":
imageToURL( "81.gif" ) |
这样模拟抓包POST 的话会失败...为啥 ? |
|