У меня проблема со скриптом Python.Все работает нормально, когда я не использую такие буквы, как: ą, ć, ź и т. Д. Сценарий, используя api для отправки смс.В почтальоне тоже работает.Python 2.7.Я хочу кодировать в UTF-8, но у меня есть: {"timestamp":"2018-04-25T08:04:04.418+0000","status":400,"error":"Bad Request","message":"JSON parse error: Invalid UTF-8 start byte 0x9c\n
Мой сценарий:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import httplib
if len(sys.argv) < 3:
print("no agrs")
print("arg1: number")
print("arg2: sender")
print("arg3 and next: message")
else:
headers = {"Content-Type": "application/json; charset=utf8",
"Authorization": 'Basic xxxx'}
conn = httplib.HTTPConnection('xxxx', 5050)
message = ""
for i in sys.argv[3:]:
message = message + " " + i
conn.request("POST", "/my/url/",
"{\"receiver\": \"" + sys.argv[1] + "\",\"sender\": \"" + str(sys.argv[2]) + "\", \"content\": \"" + str(message) + "\"}",
headers)
response = conn.getresponse()
print(response.status, response.reason)
print(response.read())
if response.status == 200:
print("sent!")
conn.close()
Моя ошибка:
{"timestamp":"2018-04-25T08:53:25.834+0000","status":400,"error":"Bad Request","message":"JSON parse error: Invalid UTF-8 start byte 0x9c\n at [Source: (PushbackInputStream); line: 1, column: 66]; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Invalid UTF-8 start byte 0x9c\n at [Source: (PushbackInputStream); line: 1, column: 66]\n at [Source: (PushbackInputStream); line: 1, column: 60] (through reference chain: my-method[\"content\"])","path":"path to my url"}