data = {
'ids': [12, 3, 4, 5, 6 , ...]
}
urllib2.urlopen("http://abc.com/api/posts/create",urllib.urlencode(data))
POSTリクエストを送信したいのですが、フィールドの1つは数値のリストでなければなりません。どうやってやるの ?(JSON?)
data = {
'ids': [12, 3, 4, 5, 6 , ...]
}
urllib2.urlopen("http://abc.com/api/posts/create",urllib.urlencode(data))
POSTリクエストを送信したいのですが、フィールドの1つは数値のリストでなければなりません。どうやってやるの ?(JSON?)
回答:
サーバーがPOSTリクエストがjsonであることを期待している場合は、ヘッダーを追加し、リクエストのデータをシリアル化する必要があります...
Python 2.x
import json
import urllib2
data = {
'ids': [12, 3, 4, 5, 6]
}
req = urllib2.Request('http://example.com/api/posts/create')
req.add_header('Content-Type', 'application/json')
response = urllib2.urlopen(req, json.dumps(data))
Python 3.x
https://stackoverflow.com/a/26876308/496445
ヘッダーを指定しない場合は、デフォルトのapplication/x-www-form-urlencoded
タイプになります。
add_header()
追加するヘッダーごとに、もう一度呼び出します。
req = urllib.Request('http://uat-api.synapsefi.com') req.add_header('X-SP-GATEWAY', 'client_id_asdfeavea561va9685e1gre5ara|client_secret_4651av5sa1edgvawegv1a6we1v5a6s51gv') req.add_header('X-SP-USER-IP', '127.0.0.1') req.add_header('X-SP-USER', '| ge85a41v8e16v1a618gea164g65') req.add_header('Content-Type', 'application/json') print(req)
...
The view tab.views.profileSetup didn't return an HttpResponse object. It returned None instead.
@jdi
import urllib.request
とurllib.request.Request()
。さらに、reqオブジェクトを出力しても、何もおもしろくない。印刷によってヘッダーが追加されたことがはっきりとわかりますreq.headers
。それを超えて、なぜそれがあなたのアプリケーションで機能しないのか私は不思議ではありません。
信じられないほどのrequests
モジュールを使用することをお勧めします。
http://docs.python-requests.org/en/v0.10.7/user/quickstart/#custom-headers
url = 'https://api.github.com/some/endpoint'
payload = {'some': 'data'}
headers = {'content-type': 'application/json'}
response = requests.post(url, data=json.dumps(payload), headers=headers)
TypeError: post() takes from 1 to 2 positional arguments but 3 were given
python 3.4.2の場合、次のように動作することがわかりました。
import urllib.request
import json
body = {'ids': [12, 14, 50]}
myurl = "http://www.testmycode.com"
req = urllib.request.Request(myurl)
req.add_header('Content-Type', 'application/json; charset=utf-8')
jsondata = json.dumps(body)
jsondataasbytes = jsondata.encode('utf-8') # needs to be bytes
req.add_header('Content-Length', len(jsondataasbytes))
print (jsondataasbytes)
response = urllib.request.urlopen(req, jsondataasbytes)
これは Python 3.5
。URLにクエリ文字列/パラメータ値が含まれている場合、
リクエストURL = https://bah2.com/ws/rest/v1/concept/
パラメータ値= 21f6bb43-98a1-419d-8f0c-8133669e40ca
import requests
url = 'https://bahbah2.com/ws/rest/v1/concept/21f6bb43-98a1-419d-8f0c-8133669e40ca'
data = {"name": "Value"}
r = requests.post(url, auth=('username', 'password'), verify=False, json=data)
print(r.status_code)
ヘッダーを追加しないと、http 400エラーが発生します。コードはpython2.6、centos5.4でうまく機能します
コード:
import urllib2,json
url = 'http://www.google.com/someservice'
postdata = {'key':'value'}
req = urllib2.Request(url)
req.add_header('Content-Type','application/json')
data = json.dumps(postdata)
response = urllib2.urlopen(req,data)
Python標準ライブラリのurllib.requestオブジェクトの使用例を以下に示します。
import urllib.request
import json
from pprint import pprint
url = "https://app.close.com/hackwithus/3d63efa04a08a9e0/"
values = {
"first_name": "Vlad",
"last_name": "Bezden",
"urls": [
"https://twitter.com/VladBezden",
"https://github.com/vlad-bezden",
],
}
headers = {
"Content-Type": "application/json",
"Accept": "application/json",
}
data = json.dumps(values).encode("utf-8")
pprint(data)
try:
req = urllib.request.Request(url, data, headers)
with urllib.request.urlopen(req) as f:
res = f.read()
pprint(res.decode())
except Exception as e:
pprint(e)
最新のリクエストパッケージではjson
、requests.post()
メソッドのパラメーターを使用してjson辞書を送信でき、Content-Type
inヘッダーはに設定されapplication/json
ます。ヘッダーを明示的に指定する必要はありません。
import requests
payload = {'key': 'value'}
requests.post(url, json=payload)