Whenever I try to get the answer of that POST request command, it returns only the first argument:
s = requests.post('https://martindarc59.typeform.com/app/form/result/token/AdHdvM/default')
print (s.text)
It should output this : enter image description here
However, I only get the token value and not the landed_at
, I need both in my code to submit them at the end of my form.
Thank you !