M
miamia
hello, I am using this code to send data over https with post method:
params='tieto data idu na sevrer\n'
kamodoslat = "https://domena.tld/script.php"
req = urllib2.Request(kamodoslat)
req.add_header('User-Agent', 'agent')
resp = urllib2.urlopen(req, params)
how can I make sure that data were really sent over secured protocol
https and all communcation went through https?
params='tieto data idu na sevrer\n'
kamodoslat = "https://domena.tld/script.php"
req = urllib2.Request(kamodoslat)
req.add_header('User-Agent', 'agent')
resp = urllib2.urlopen(req, params)
how can I make sure that data were really sent over secured protocol
https and all communcation went through https?