###相談内容
想定しているjsonを返すにはどうすればいいでしょうか?
lambda(python)のコード
python
1import json 2def lambda_handler(event, context): 3 response = {'status':'0', 'url':'https://www.hoge.co.jp/images/hoge.png'} 4 response = json.dumps(response,indent=2) 5 return response
###実際に返ってくるjson
"{\n \"status\": \"9\",\n \"url\": \"https://www.hoge.co.jp/images/hoge.png\"\n}"
###想定しているjson
{ status: "9", url: "https://www.hoge.co.jp/images/hoge.png" }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/28 05:25