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
私が間違っていることは何ですか?
これは、おそらく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"}
}