Znalazłem ten skrypt online:
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()
Ale nie rozumiem, jak używać go z PHP ani czym jest wszystko w zmiennej params, ani jak jej używać. Czy mogę prosić o pomoc w staraniu się, aby to zadziałało?
live http header
dodatku do firefoxa, a następnie otwarcie adresu URL w firefoxie i zobaczenie request/response
adresu URL w live http header
dodatku, niż zrozumiesz, co params and headers
robisz w kodzie.