将带有JSON有效负载的curl POST语句转换为Python请求

时间:2019-10-08 22:00:36

标签: python api curl post request

我可以运行带有curl的curl statemtent,并且效果很好。我读了很多文章,但没有任何效果。

curl -X POST "http://some.website.com" -H "accept: application/json" -H "authorization: Basic authcode" -H "Content-Type: application/json" -d "{ \"Fields\": [ \"string\" ], \"Filters\": [ { \"Field\": \"Item\", \"Operator\": \"=\", \"Value\": \"119001\" } ], \"PageSize\": 0, \"PageNumber\": 0}"
到目前为止,

代码已尝试

import requests

session = requests.Session()

url = 'http://some.website.com'

headers = {'accept': 'application/json', 'authorization': 'Basic authcode', 'Content-Type': 'application/json'}

data = {'Fields': 'string', 'Filters': { 'Field': 'Item', 'Operator': '=', 'Value': '119001' }, 'PageSize': 0, 'PageNumber': 0}

response = session.post(url, headers=headers, data=data)

print(response.status_code)
print(response.json())

错误=无效的JSON值

我也尝试过

import simplejson as json
# ...
# ...
response = session.post(url, headers=headers, data=json.dumps(data))
# ...
# ...

失败=检测JSON字段时出错

我认为这与嵌套的dict语句有关

1 个答案:

答案 0 :(得分:0)

使用https://httpbin.org/post,我可以看到服务器上收到了哪些数据(标头和正文),并且对于curl,我看到了相同的结果

curl -X POST "http://httpbin.org/post" -H "accept: application/json" -H "authorization: Basic authcode" -H "Content-Type: application/json" -d "{\"Fields\": [\"string\"], \"Filters\": [{\"Field\": \"Item\", \"Operator\": \"=\", \"Value\": \"119001\"}], \"PageSize\": 0, \"PageNumber\": 0}"

# result 

{
  "args": {}, 
  "data": "{\"Fields\": [\"string\"], \"Filters\": [{\"Field\": \"Item\", \"Operator\": \"=\", \"Value\": \"119001\"}], \"PageSize\": 0, \"PageNumber\": 0}", 
  "files": {}, 
  "form": {}, 
  "headers": {
    "Accept": "application/json", 
    "Authorization": "Basic authcode", 
    "Content-Length": "122", 
    "Content-Type": "application/json", 
    "Host": "httpbin.org", 
    "User-Agent": "curl/7.58.0"
  }, 
  "json": {
    "Fields": [
      "string"
    ], 
    "Filters": [
      {
        "Field": "Item", 
        "Operator": "=", 
        "Value": "119001"
      }
    ], 
    "PageNumber": 0, 
    "PageSize": 0
  }, 
  "origin": "83.23.32.69, 83.23.32.69", 
  "url": "https://httpbin.org/post"
}

Python

import requests

headers = {
    'Accept': 'application/json',
    'Authorization': 'Basic authcode',
#    'Content-Type': 'application/json',
#    'User-Agent': 'Mozilla/5.0',
}

data = {
  "Fields": [ "string" ],
  "Filters": [ { "Field": "Item", "Operator": "=", "Value": "119001" } ],
  "PageSize": 0,
  "PageNumber": 0
}

response = requests.post('https://httpbin.org/post', headers=headers, json=data)
print(response.text)

# result

{
  "args": {}, 
  "data": "{\"Fields\": [\"string\"], \"Filters\": [{\"Field\": \"Item\", \"Operator\": \"=\", \"Value\": \"119001\"}], \"PageSize\": 0, \"PageNumber\": 0}", 
  "files": {}, 
  "form": {}, 
  "headers": {
    "Accept": "application/json", 
    "Accept-Encoding": "gzip, deflate", 
    "Authorization": "Basic authcode", 
    "Content-Length": "122", 
    "Content-Type": "application/json", 
    "Host": "httpbin.org", 
    "User-Agent": "python-requests/2.22.0"
  }, 
  "json": {
    "Fields": [
      "string"
    ], 
    "Filters": [
      {
        "Field": "Item", 
        "Operator": "=", 
        "Value": "119001"
      }
    ], 
    "PageNumber": 0, 
    "PageSize": 0
  }, 
  "origin": "83.23.32.69, 83.23.32.69", 
  "url": "https://httpbin.org/post"
}

标头仅存在差异:"User-Agent": "curl/7.58.0""User-Agent": "python-requests/2.22.0"。 Python使用"Accept-Encoding": "gzip, deflate"