web-dev-qa-db-ja.com

TypeError:b'1 'はJSONシリアル化できません

POSTリクエストをJSONとして送信しようとしています。

*電子メール変数のタイプは「バイト」です

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

私が間違っていることは何ですか?

30
Teodora

これは、おそらくbytesの値としてdata dict(具体的にはb'1')でindexオブジェクトを渡しているために発生しています。 json.dumpsを使用するには、strオブジェクトにデコードする必要があります。

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"}
}
41
dano