Jika server Anda mengharapkan permintaan POST menjadi json, maka Anda perlu menambahkan header, dan juga membuat serial data untuk permintaan Anda ...
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
Jika Anda tidak menentukan header, itu akan menjadi application/x-www-form-urlencoded
tipe default .