我如何发送POST请求作为JSON?
data = { 'ids': [12, 3, 4, 5, 6 , ...] } urllib2.urlopen("http://abc.com/api/posts/create",urllib.urlencode(data))
我想发送一个POST请求,但其中一个字段应该是一个数字列表。 我怎样才能做到这一点 ? (JSON?)
如果你的服务器期望POST请求是json,那么你需要添加一个头文件,并且序列化你的请求的数据。
import json import urllib2 data = { 'ids': [12, 3, 4, 5, 6] } req = urllib2.Request('http://example.com/api/posts/create') req.add_header('Content-Type', 'application/json') response = urllib2.urlopen(req, json.dumps(data))
如果你不指定标题,它将是默认的application/x-www-form-urlencoded
types。
我build议使用令人难以置信的requests
模块。
http://docs.python-requests.org/en/v0.10.7/user/quickstart/#custom-headers
url = 'https://api.github.com/some/endpoint' payload = {'some': 'data'} headers = {'content-type': 'application/json'} response = requests.post(url, data=json.dumps(payload), headers=headers)
对于Python 3.4.2我发现以下将工作:
import urllib.request import json body = {'ids': [12, 14, 50]} myurl = "http://www.testmycode.com" req = urllib.request.Request(myurl) req.add_header('Content-Type', 'application/json; charset=utf-8') jsondata = json.dumps(body) jsondataasbytes = jsondata.encode('utf-8') # needs to be bytes req.add_header('Content-Length', len(jsondataasbytes)) print (jsondataasbytes) response = urllib.request.urlopen(req, jsondataasbytes)
你必须添加标题,否则你会得到http 400错误。 代码在python2.6,centos5.4上运行良好
码:
import urllib2,json url = 'http://www.google.com/someservice' postdata = {'key':'value'} req = urllib2.Request(url) req.add_header('Content-Type','application/json') data = json.dumps(postdata) response = urllib2.urlopen(req,data)
这适用于Python版本3.5,如果URL包含查询string/参数值,
请求URL = https://bah2.com/ws/rest/v1/concept/
参数值= 21f6bb43-98a1-419d-8f0c-8133669e40ca
import requests r = requests.post('https://bah2.com/ws/rest/v1/concept/21f6bb43-98a1-419d-8f0c-8133669e40ca',auth=('username', 'password'),verify=False, json={"name": "Value"}) headers = {'Content-type': 'application/json'} print(r.status_code)