data = {
'ids': [12, 3, 4, 5, 6 , ...]
}
urllib2.urlopen("http://abc.com/api/posts/create",urllib.urlencode(data))
POST 요청을 보내고 싶지만 필드 중 하나가 숫자 목록이어야합니다. 어떻게 할 수 있습니까? (JSON?)
data = {
'ids': [12, 3, 4, 5, 6 , ...]
}
urllib2.urlopen("http://abc.com/api/posts/create",urllib.urlencode(data))
POST 요청을 보내고 싶지만 필드 중 하나가 숫자 목록이어야합니다. 어떻게 할 수 있습니까? (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
파이썬 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)
lastest requests 패키지 json
에서 requests.post()
메서드의 매개 변수를 사용 하여 json dict를 보낼 수 있으며 Content-Type
in 헤더는로 설정됩니다 application/json
. 헤더를 명시 적으로 지정할 필요가 없습니다.
import requests
payload = {'key': 'value'}
requests.post(url, json=payload)