I am trying to create a simple post method with a module requests, for example:
s=requests.Session()
s.post(link,data=payload)
To do this correctly, the payload is the identifier of the page itself and is generated each time the page is accessed.
So I need to READ without reloading the whole webpage so that I can get the correct id.
source
share