Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get JSON data from a Python POST request

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 !

like image 600
Mehditation Avatar asked Feb 12 '26 04:02

Mehditation


1 Answers

You need to send the "Accept": "application/json" header, i.e.:

import requests

u = "https://martindarc59.typeform.com/app/form/result/token/AdHdvM/default"
j = requests.post(u, headers={"Accept": "application/json"}).json()
# {'token': '20903331626f396431746f397777693832713331626f39643136747572367978706434313339363936363463366336363533373434333536343134353337366237613339343233303664373236613737353935613431363436393336343833313335333833383332333733393336333333373633653233363637346132653432343938383963326537663165326535633262373837326336613437343539666638653932613131393266386236393635626131353838323739363337', 'landed_at': '1588279637'}
like image 175
Pedro Lobito Avatar answered Feb 13 '26 16:02

Pedro Lobito



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!