这是一个API调用的原始请求:

POST http://192.168.3.45:8080/api/v2/event/log?sessionKey=b299d17b896417a7b18f46544d40adb734240cc2&format=json HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 86
Host: 192.168.3.45:8080
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)

{"eventType":"AAS_PORTAL_START","data":{"uid":"hfe3hf45huf33545","aid":"1","vid":"1"}}"""

此请求返回一个成功(2xx)响应。

现在我试图张贴这个请求使用请求:

>>> import requests
>>> headers = {'content-type' : 'application/json'}
>>> data ={"eventType":"AAS_PORTAL_START","data{"uid":"hfe3hf45huf33545","aid":"1","vid":"1"}}
>>> url = "http://192.168.3.45:8080/api/v2/event/log?sessionKey=9ebbd0b25760557393a43064a92bae539d962103&format=xml&platformId=1"
>>> requests.post(url,params=data,headers=headers)
<Response [400]>

对我来说一切都很好,我不太确定我贴错了什么,得到了400个回复。


当前回答

将响应分配给一个值并测试它的属性。这些应该会告诉你一些有用的东西。

response = requests.post(url,params=data,headers=headers)
response.status_code
response.text

当然,Status_code应该只是再次确认之前给出的代码

其他回答

将响应分配给一个值并测试它的属性。这些应该会告诉你一些有用的东西。

response = requests.post(url,params=data,headers=headers)
response.status_code
response.text

当然,Status_code应该只是再次确认之前给出的代码

设置数据如下:

data ={"eventType":"AAS_PORTAL_START","data":{"uid":"hfe3hf45huf33545","aid":"1","vid":"1"}}

params是get样式的URL参数,data是post样式的正文信息。在请求中提供这两种类型的信息是完全合法的,您的请求也是这样做的,但是您已经将URL参数编码到URL中了。

你的原始文章包含JSON数据。请求可以为你处理JSON编码,它也会设置正确的内容类型头;你所需要做的就是将Python对象作为JSON编码到JSON关键字参数中。

你也可以把URL参数分开:

params = {'sessionKey': '9ebbd0b25760557393a43064a92bae539d962103', 'format': 'xml', 'platformId': 1}

然后将你的数据发布到:

import requests

url = 'http://192.168.3.45:8080/api/v2/event/log'

data = {"eventType": "AAS_PORTAL_START", "data": {"uid": "hfe3hf45huf33545", "aid": "1", "vid": "1"}}
params = {'sessionKey': '9ebbd0b25760557393a43064a92bae539d962103', 'format': 'xml', 'platformId': 1}

requests.post(url, params=params, json=data)

json关键字是requests 2.4.2版新增的;如果你仍然必须使用旧版本,使用JSON模块手动编码JSON,并将编码的结果作为数据键发布;在这种情况下,你必须显式地设置Content-Type头:

import requests
import json

headers = {'content-type': 'application/json'}
url = 'http://192.168.3.45:8080/api/v2/event/log'

data = {"eventType": "AAS_PORTAL_START", "data": {"uid": "hfe3hf45huf33545", "aid": "1", "vid": "1"}}
params = {'sessionKey': '9ebbd0b25760557393a43064a92bae539d962103', 'format': 'xml', 'platformId': 1}

requests.post(url, params=params, data=json.dumps(data), headers=headers)