programing

TypeError: b'1'은 JSON을 직렬화할 수 없습니다.

powerit 2023. 3. 19. 19:32
반응형

TypeError: b'1'은 JSON을 직렬화할 수 없습니다.

POST 요청을 JSON으로 보내려고 합니다.

* 이메일 변수는 "bytes" 유형입니다.

def request_to_SEND(email, index):
    url = "....."
    data = {
        "body": email.decode('utf-8'),
        "query_id": index,
        "debug": 1,
        "client_id": "1",
        "campaign_id": 1,
        "meta": {"content_type": "mime"}
    }
    headers = {'Content-type': 'application/json'}

    try:
        response = requests.post(url, data=json.dumps(data), headers=headers)
    except requests.ConnectionError:
        sys.exit()

    return response

다음과 같은 에러가 표시됩니다.

 File "C:\Python34\lib\json\encoder.py", line 173, in default
    raise TypeError(repr(o) + " is not JSON serializable")
TypeError: b'1' is not JSON serializable

제가 무엇을 잘못하고 있는지 말씀해 주시겠습니까?

네가 이 일을 하고 있어서 일어나는 거야bytes의 오브젝트data받아쓰기(b'1'(구체적으로는)의 가치로서index디코딩을 해야 합니다.str에 이의를 제기하다.json.dumps사용할 수 있습니다.

data = {
    "body": email.decode('utf-8'),
    "query_id": index.decode('utf-8'),  # decode it here
    "debug": 1,
    "client_id": "1",
    "campaign_id": 1,
    "meta": {"content_type": "mime"}
}

언급URL : https://stackoverflow.com/questions/24369666/typeerror-b1-is-not-json-serializable

반응형