urllib模块只能用get urllib2模块既有get也有post 网址url = urllib2.urlopen(‘ ‘)有data表示post请求 urllib2模块 request请求是反爬虫 add—header中要写成字典的形式,用逗号隔开,单引号引起两部分的内容 ...
分类:
其他好文 时间:
2016-11-10 09:46:32
阅读次数:
364
如果你发现所有的HTTP send请求都缺少头数据包,在脚本中的开头添加web_add_auto_header(”XXXXX“,”yyyy“);随着web_add_auto_header的添加,你不需要为每个HTTP send请求都添加web_add_header了。 还有一个解决问题的方法是在To ...
分类:
Web程序 时间:
2016-10-02 19:33:44
阅读次数:
240
Nginx 实现AJAX跨域请求AJAX从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header Access-Control*指令。如下所示: ? 1 2 3 4 5 6 7 8 9 10 11 12 locati ...
分类:
Web程序 时间:
2016-09-25 20:28:06
阅读次数:
175
location ~/M00{ # root /fdfs/storage/data; # if ($request_filename ~* ^.*?\.(pdf)$){ add_header Content-Type 'application/pdf;'; } root /opt/fastdfs_s ...
分类:
其他好文 时间:
2016-09-01 02:08:11
阅读次数:
436
接上文,python发附件 注意: mime.add_header('Content-Disposition', 'attachment', filename='2013.jpg') mime.add_header('Content-ID','<0>') mime.add_header('X-Att ...
分类:
编程语言 时间:
2016-06-05 06:29:10
阅读次数:
263
1.nginx.conf中配置访问url访问api1.yingtrader.com/boquote,就会执行boquote.php代码。2.Nginx实现AJAX跨域请求要在nginx上启用跨域请求,需要添加add_headerAccess-Control*指令。如下所示:location/{add_header‘Access-Control-Allow-Origin‘‘http://other.subdomain.com‘..
在一个非CDN的域名下有一个页面,需要请求CDN域名下的资源。所以在CDN的那台源站的Nginx上设置了 add_header 'Access-Control-Allow-Headers' 'X-Requested-With' add_header 'Access-Control-Allow-Met... ...
分类:
其他好文 时间:
2016-05-31 22:33:12
阅读次数:
304
__author__=mkdir(path):
os
path=path.strip()path=path.rstrip()mkfile=os.path.exists(path)
mkfile:
()
:
os.makedirs(path)
()
urllib,urllib2,re
geturl(url):
file_lists=[]
req=urllib2.Request(url)
req.add_header(,
)
data=urllib2.urlopen(req)
f=data.read()
..
分类:
编程语言 时间:
2016-05-17 19:49:36
阅读次数:
261
#!/usr/bin/pythonimporturllib2importjsondeflogin(username,password,url,data):request=urllib2.Request(url,data)forkeyinheader:request.add_header(key,header[key])try:result=urllib2.urlopen(request)exceptURLErrorase:print"urlerror:",e.codeelse:response=json.lo..
server{
listen8080;
includeenable-php.conf;
root/home/wwwroot/p_w_picpath;
location/
{
add_header‘Access-Control-Allow-Origin‘‘http://www.tisunion.com‘;
add_header‘Access-Control-Allow-Credentials‘‘true‘;
add_header‘Access-Control-Allow-Methods‘‘GET‘;
}
loc..
分类:
其他好文 时间:
2016-01-27 13:09:42
阅读次数:
108