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.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))
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)
นี่คือตัวอย่างวิธีการใช้อ็อบเจกต์ urllib.request จากไลบรารีมาตรฐาน Python
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)
คุณต้องเพิ่มส่วนหัวมิฉะนั้นคุณจะได้รับข้อผิดพลาด 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)
ในแพคเกจการร้องขอล่าสุดคุณสามารถใช้json
พารามิเตอร์ในrequests.post()
วิธีการที่จะส่ง Dict JSON และในส่วนหัวจะถูกตั้งค่าContent-Type
application/json
ไม่จำเป็นต้องระบุส่วนหัวอย่างชัดเจน
import requests
payload = {'key': 'value'}
requests.post(url, json=payload)
อันนี้ใช้ได้ดีกับฉันด้วย apis
import requests
data={'Id':id ,'name': name}
r = requests.post( url = 'https://apiurllink', data = data)