我正在尝试编写一个 python HTTP 请求代码,以通过其 API 之一将数据发送到 Ant 媒体服务器。但是我无法发送 POST 请求,但是我在 GET 请求中成功了。
import requests
url = "http://localhost:5080/LiveApp/rest/broadcast/create"
body12 = {
"name": "TESTAPIsss",
"description":"hiiii",
"type": "streamSource",
"streamId":"650320906975923279669775",
"streamUrl": "rlink"
}
headers = {'content-type': 'application/json'}
x = requests.post(url, data=body12, headers=headers)
print(x.text)
我面临的错误是
无法识别的令牌“名称”:在 [Source: (org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream) 处期待“null”、“true”、“false”或 NaN;行:1,列:6]