2
Hello I would like to know how I can get a value from a one-page input after performing a Curl with requests in python 3.6!
Example:
<input type="hidden" name="authURL" value="1526610106833.UG2TCP2ZiJ9HKXhlrlgybcdEBB0=" data-reactid="37"/>
I wanted to take the content of "value", which changes with each request, and use it in the header for another Curl.
Friend, I need to get the value of the authurl of a link, this authurl changes in this such link every time I refresh the page, how to proceed ?
– user113606
@Gennie having html (server response) can fetch value from input, this way and use it as you wish for future http requests. Look at the demonstrations
– Miguel
Miguel, I can’t understand, could you do another demo for me using a link in which you pull data from this link ?
– user113606
@Gennie you have the link you want to do this parse, you can give me to take a look
– Miguel
I got this one at random::https://www.netflix.com/br/login
– user113606
How do I give Curl (get) this link and get the value of "<input type="Hidden" name="withFields" value="accessToken,rememberme,nextpage" data-reactid="51"/><input type="Hidden" name="authURL" value="1526639860898.gm/544CBTGsGINJNknmU2CHt5w0=" data-reactid="52"/>"
– user113606
The value of this input changes with each request
– user113606
@Gennie, https://repl.it/repls/ZealousConventionalAnalysts
– Miguel
Thank you very much!
– user113606