java - 在 Python 中检索 JSON 以响应 POST

标签 java python json python-requests zapier

我正在尝试从服务器获取 JSON 以便在 Python 代码中使用它。出于测试目的,我通过 curl 进行了 POST:

$ curl -u trial:trial -H "Content-Type: application/json"
-X POST -d '{"BP_TSM":"22"}' http://some-host --trace-ascii -

我的 Java 代码似乎可以正确处理创建 JSON 作为响应。请查看curl命令的结果:

 == Info: About to connect() to localhost port 8080 (#0)
== Info:   Trying ::1...
== Info: Connected to localhost (::1) port 8080 (#0)
== Info: Server auth using Basic with user 'trial'
=> Send header, 224 bytes (0xe0)
0000: POST /get/auth HTT
0040: P/1.1
0047: Authorization: Basic dHJpYWw6dHJpYWw=
006e: User-Agent: curl/7.29.0
0087: Host: localhost:8080
009d: Accept: */*
00aa: Content-Type: application/json
00ca: Content-Length: 15
00de: 
=> Send data, 15 bytes (0xf)
0000: {"BP_TSM":"22"}
== Info: upload completely sent off: 15 out of 15 bytes
<= Recv header, 23 bytes (0x17)
0000: HTTP/1.1 202 Accepted
<= Recv header, 34 bytes (0x22)
0000: Server: Payara Micro #badassfish
<= Recv header, 32 bytes (0x20)
0000: Content-Type: application/json
<= Recv header, 37 bytes (0x25)
0000: Date: Thu, 22 Mar 2018 14:30:43 GMT
<= Recv header, 21 bytes (0x15)
0000: Content-Length: 108
<= Recv header, 29 bytes (0x1d)
0000: X-Frame-Options: SAMEORIGIN
<= Recv header, 2 bytes (0x2)
0000: 
<= Recv data, 108 bytes (0x6c)
0000: {"title":"Free Music Archive - Albums","message":"","total":"112
0040: 59","total_pages":2252,"page":1,"limit":"5"}
{"title":"Free Music Archive - Albums","message":"","total":"11259","total_pages

":2252,"page":1,"limit":"5"}== Info: Connection #0 to host localhost left intact

现在我希望 Python 脚本能够接收与 curl 相同的消息。我编写了以下 Python 代码(注意我不是 Python 开发人员):

import pickle
import requests
import codecs
import json
from requests.auth import HTTPBasicAuth
from random import randint
req = requests.get('server/get/auth', auth=HTTPBasicAuth('trial', 'trial'))
return pickle.dumps(req)

不幸的是,当执行 return pickle.dumps(req) 命令时,我收到错误消息 'unicode' object has no attribute 'copy' 。我还尝试使用 return json.dumps(req) 但这次我收到另一个错误:

Traceback (most recent call last):
  File "/tmp/tmp8DfLJ7/usercode.py", line 16, in the_function
    return json.dumps(req)
  File "/usr/lib64/python2.7/json/__init__.py", line 244, in dumps
    return _default_encoder.encode(obj)
  File "/usr/lib64/python2.7/json/encoder.py", line 207, in encode
    chunks = self.iterencode(o, _one_shot=True)
  File "/usr/lib64/python2.7/json/encoder.py", line 270, in iterencode
    return _iterencode(o, 0)
  File "/usr/lib64/python2.7/json/encoder.py", line 184, in default
    raise TypeError(repr(o) + " is not JSON serializable")
TypeError: <Response [405]> is not JSON serializable

我的 Python 代码中是否存在错误,或者是我的 Java 服务器返回了不正确的 JSON 的错误?

最佳答案

您的 Python 代码中存在许多错误。

  • 您正在使用 request.get 进行 POST。相反,请使用 request.post
  • 您没有将 BP_TSM json 字符串传递到您的请求中。在 request.post 中使用 data=
  • 您没有将-H 开关模拟为curl。在 request.post 中使用 headers=
  • 您无缘无故地使用 pickle。不要这样做。
  • 当您不在函数中时,您正在使用 return 语句。不要那样做。如果您想打印到标准输出,请使用 print()sys.stdout.write()
  • 如果您确实想使用 JSON 返回的变量(而不是简单地打印到 stdout),则应调用 req.json()

这是已解决问题的代码版本。

import requests
import json
import sys
from requests.auth import HTTPBasicAuth

data = '{"BP_TSM": "22"}'                       # curl -d
headers = {'content-type': 'application/json'}  # curl -H
auth = HTTPBasicAuth('trial', 'trial')          # curl -u

req = requests.post(                            # curl -X POST
    'http://httpbin.org/post',
    auth=auth,
    data=data,
    headers=headers)
sys.stdout.write(req.text)         # Display JSON on stdout
returned_data = req.json()
my_ip = returned_data["origin"]    # Query value from JSON
print("My public IP is", my_ip)

关于java - 在 Python 中检索 JSON 以响应 POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49431565/

相关文章:

java - 字符串精度

java - 如何从 ArrayAdapter 类更新 ListView?

java - JPA:从外部源更新数据的好方法是什么?

python - Python解析JSON : how do I get has_key() working again after a change of format?

javascript - 寻找字符串化圆形对象的好答案

java - postman 请求不正确 - 错误字符串

Java TCP 服务器

python - 如何确保自定义函数在执行每个Python单元测试后运行?

python : update value in nested dictonary after reading keys from list

python - 集群中的 Django CSRF