Jul-16-2019, 10:59 PM
Since the parameter
paramtwo
is shown in your url, this is definitely GET-request (or may be you have this parameter is sent as POST too behind the scene). To get get-parameters you need to parse self.path
, e.g. something like this (not tested):import urllib print(urllib.parse.parse_qs(self.path))