如何将凭证传递给NiFi rest api

时间:2017-03-16 07:31:44

标签: rest apache-nifi

我已为Apache NiFi-1.1.1启用了LDAP身份验证。

我可以在使用ldap用户登录后访问NiFi web ui。

当我尝试使用基本身份验证/process-groups/root访问REST API时,会显示

Unable to perform the desired action due to insufficient permissions. Contact the system administrator.

如何将凭证传递给NiFi REST API? 如何使用令牌访问NiFi REST API?

提前致谢。

1 个答案:

答案 0 :(得分:4)

通过LDAP进行身份验证时,NiFi REST API将要求客户端为每个请求传递令牌。要获取令牌,您需要传递凭据以进行身份​​验证。

curl 'https://localhost:8443/nifi-api/access/token' -H 'Accept-Encoding: gzip, deflate, br' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' -H 'Accept: */*' --data 'username=<user>&password=<pass>' --compressed

此请求将返回您需要在每个后续请求的标头中传递的令牌。例如:

curl 'https://localhost:8443/nifi-api/flow/current-user' -H 'Accept-Encoding: gzip, deflate, sdch, br' -H 'Authorization: Bearer <token>' -H 'Accept: application/json, text/javascript, */*; q=0.01' --compressed