ネイティブPythonライブラリのみを使用してJSONエンコードデータをサーバーに送信します。リクエストは大好きですが、スクリプトを実行するマシンでは使用できないため、使用できません。なしでそれをする必要があります。
newConditions = {"con1":40, "con2":20, "con3":99, "con4":40, "password":"1234"}
params = urllib.parse.urlencode(newConditions)
params = params.encode('utf-8')
req = urllib.request.Request(conditionsSetURL, data=params)
urllib.request.urlopen(req)
私のサーバーはローカルWAMPサーバーです。私はいつも
urllib.error.HTTPError:HTTPエラー500:内部サーバーエラー
私は100%確かこれは[〜#〜] not [〜#〜]であり、同じデータ、同じURL、同じ同じサーバーで、リクエストライブラリとPostmanで動作するマシン。
JSONを投稿するのではなく、application/x-www-form-urlencoded
リクエスト。
JSONにエンコードし、正しいヘッダーを設定します。
import json
newConditions = {"con1":40, "con2":20, "con3":99, "con4":40, "password":"1234"}
params = json.dumps(newConditions).encode('utf8')
req = urllib.request.Request(conditionsSetURL, data=params,
headers={'content-type': 'application/json'})
response = urllib.request.urlopen(req)
デモ:
>>> import json
>>> import urllib.request
>>> conditionsSetURL = 'http://httpbin.org/post'
>>> newConditions = {"con1":40, "con2":20, "con3":99, "con4":40, "password":"1234"}
>>> params = json.dumps(newConditions).encode('utf8')
>>> req = urllib.request.Request(conditionsSetURL, data=params,
... headers={'content-type': 'application/json'})
>>> response = urllib.request.urlopen(req)
>>> print(response.read().decode('utf8'))
{
"args": {},
"data": "{\"con4\": 40, \"con2\": 20, \"con1\": 40, \"password\": \"1234\", \"con3\": 99}",
"files": {},
"form": {},
"headers": {
"Accept-Encoding": "identity",
"Connection": "close",
"Content-Length": "68",
"Content-Type": "application/json",
"Host": "httpbin.org",
"User-Agent": "Python-urllib/3.4",
"X-Request-Id": "411fbb7c-1aa0-457e-95f9-1af15b77c2d8"
},
"json": {
"con1": 40,
"con2": 20,
"con3": 99,
"con4": 40,
"password": "1234"
},
"Origin": "84.92.98.170",
"url": "http://httpbin.org/post"
}