Skip to content Skip to sidebar Skip to footer

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

Solution 1:

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'}

Post a Comment for "How To Get Json Data From A Python Post Request"