Ho trovato questo script 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()
Ma non capisco come usarlo con PHP o cosa sia tutto all'interno della variabile params o come usarlo. Posso per favore avere un piccolo aiuto nel tentativo di farlo funzionare?
live http header
addon di Firefox e quindi aprire l'URL in Firefox e vedere l' request/response
URL live http header
nell'addon di quanto capirai cosa params and headers
fai nel tuo codice.