gpt4 book ai didi

Airflow 实验 api dagrun 给出 400 错误 : what should be the input parameter

转载 作者:行者123 更新时间:2023-12-04 21:24:38 25 4
gpt4 key购买 nike

来自 postman 的 POST 请求
http://host:8080/api/experimental/dags/test_flow/dag_runs
“400 错误请求:浏览器(或代理)发送了此服务器无法理解的请求。”
当它尝试从请求中获取 get_json 时。即在行数据 = request.get_json(force=True)

这个 API 调用的输入应该是什么..?

最佳答案

有同样的问题,通过发布一个空的 JSON 解决了​​它

curl -X POST \
http://localhost:8080/api/experimental/dags/<DAG_ID>/dag_runs \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/json' \
-d '{}'

关于 Airflow 实验 api dagrun 给出 400 错误 : what should be the input parameter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44573315/

25 4 0