发布请求:不使用python请求库发送unicode字符串数据

时间:2019-04-22 14:14:28

标签: python python-3.x python-requests

我正在尝试使用Python requests库将包括越南语Unicode字符串的JSON数据发布到服务器。

    r = requests.post(my_url, json={"text": "bảo vệ môi trường biển"}, headers=my_headers)

但这是服务器收到的文本

'{"code":200,"msg":"OK","resp":{"id":148054,"text": "b\\\\u1ea3o v\\\\u1ec7 m\\\\u00f4i tr\\\\u01b0\\\\u1eddng bi\\\\u1ec3n\\"}}'

我该如何以其原始字符发布文本

'{"code":200,"msg":"OK","resp":{"id":148054,"text": "bảo vệ môi trường biển"}}'

这是针对Python 3.7.3和请求2.21.0

0 个答案:

没有答案