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
유형이됩니다.
놀라운 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)
파이썬 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에 쿼리 문자열 / 매개 변수 값이 포함 된 경우에 완벽하게 작동 합니다.
Request URL = https://bah2.com/ws/rest/v1/concept/
Parameter value = 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)
You have to add header,or you will get http 400 error. The code works well on python2.6,centos5.4
code:
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)
Here is an example of how to use urllib.request object from Python standard library.
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)
참고URL : https://stackoverflow.com/questions/9746303/how-do-i-send-a-post-request-as-a-json
'programing' 카테고리의 다른 글
프로그래밍 방식으로 SearchView를 열려면 어떻게합니까? (0) | 2020.08.24 |
---|---|
배열 jQuery에 추가 (0) | 2020.08.24 |
목록 변환 (0) | 2020.08.24 |
콘텐츠가없는 DIV에 너비가있는 방법은 무엇입니까? (0) | 2020.08.24 |
파이썬에서 셀레늄 웹 드라이버를 사용하여 웹 페이지를 어떻게 스크롤 할 수 있습니까? (0) | 2020.08.24 |