2018-09-10から1日間の記事一覧

Python3でリクエストパラメータ付のPOST通信をしたときに、リクエストパラメータが抜け落ちる

tkfric.hatenablog.com この記事でやったことの続き def http_post(url, headers, body): req = urllib.request.Request(url, json.dumps(body).encode(), headers, 'POST') try: with urllib.request.urlopen(req) as res: body = res.read().decode() でbo…

can't concat bytes to str: TypeErrorを解決する

コードは以下 def http_post(url, headers, body): req = urllib.request.Request(url, body, headers, 'POST') try: with urllib.request.urlopen(req) as res: body = res.read().decode() でてきたエラーは以下 can't concat bytes to str: TypeError Tra…