大家好,我正在尝试使用Airflow的REST API通过外部触发器激活DAG,例如:
POST: http://{{url}}:{{port}}/api/experimental/dags/MY_DAG_ID/dag_runs
headers = {
'Content-Type': 'application/json',
'Cache-Control': 'no-cache',
}
它工作得很好(答案:状态200),但是我需要一些安全性,因为它不能向公众开放,因此我阅读了API身份验证,可以在[C0上设置auth_backend ]的工作原理,就像用于Web界面的密码验证一样。
airflow.cfg
但是现在,答案是((401-未经授权),我不知道如何配置REST API以使用具有这种安全性的外部触发器。
用户:管理员
[api]
auth_backend = airflow.contrib.auth.backends.password_auth
您可以在这里查看它是如何发生的:https://airflow.apache.org/docs/stable/api.html#authentication
示例用法:
header = request.headers.get("Authorization") if header: userpass = ''.join(header.split()[1:]) username, password = base64.b64decode(userpass).decode("utf-8").split(":", 1)