How to get JSON data from a Python POST request

泪湿孤枕 提交于 2021-02-10 03:54:28

问题


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 !


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


来源:https://stackoverflow.com/questions/61532103/how-to-get-json-data-from-a-python-post-request

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!