আমি এই স্ক্রিপ্টটি অনলাইনে পেয়েছি:
import httplib, urllib
params = urllib.urlencode({'number': 12524, 'type': 'issue', 'action': 'show'})
headers = {"Content-type": "application/x-www-form-urlencoded",
"Accept": "text/plain"}
conn = httplib.HTTPConnection("bugs.python.org")
conn.request("POST", "", params, headers)
response = conn.getresponse()
print response.status, response.reason
302 Found
data = response.read()
data
'Redirecting to <a href="http://bugs.python.org/issue12524">http://bugs.python.org/issue12524</a>'
conn.close()
তবে আমি কীভাবে এটি পিএইচপি দিয়ে ব্যবহার করব বা প্যারামের ভেরিয়েবলের ভিতরে থাকা সমস্ত কিছুই কীভাবে ব্যবহার করব তা আমি বুঝতে পারি না। এটি কীভাবে চালিয়ে যাওয়ার চেষ্টা করার সাথে আমি একটু সাহায্য করতে পারি?
live http header
addon এবং Firefox এ আপনার URL টি তুলনায় খোলা এবং দেখ request/response
URL টির live http header
addon চেয়ে কি আপনি বুঝতে হবে params and headers
আপনার কোডে না।