import requests
import json
def jdy(dataid):
url = "https://api.jiandaoyun.com/api/v2/app/62123ecf232fd30009d25667/entry/62123ed757ec0a00078161f1/data_retrieve"
payload = json.dumps({ # take python The dictionary format under format is changed to josn String format under format
"data_id": dataid
})
headers = {
'Authorization': 'Bearer OMwL2kzw7vn30eUrpIyJQuO',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
jdy("6213231f0bdb610007768196")