Hello Everyone,
We are triggering our Nifi processors (version 1.16.2 , LDAP integrated ) through Curl within cron job. Curl is invoking the processor using access token (as we moved from http call to https)
Generating access token :
curl https://$hostip:$port/nifi-api/access/token -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' --data 'username="${ldapusername}"&password="${ldappassword}"' '--compressed --insecure
Curl invoking Nifi processor using acces token stored in variable $nifi_token :
curl -i -H 'Content-Type: application/json' -H 'Authorization:Bearer '$nifi_token -XPUT -d '{"id":"'${processorid }'","state":"STOPPED"}' https://$hostip:$port/nifi-api/flow/process-groups/$processorid '--insecure'
But it is failing for token expiration :
WWW-Authenticate: Bearer error="invalid_token", error_description="An error occurred while attempting to decode the Jwt: Expired JWT", error_uri="https://tools.ietf.org/html/rfc6750#section Server: Jetty(9.4.46.v20220331)
How can we set this access token to not expire ?
Or can we not used access token and using LDAP credentials within curl script to invoke the Nifi processors.
We tried modifying "nifi.security.user.jws.key.rotation.period" property to set the expiration duration in nifi.properties following
https://exceptionfactory.com/posts/2021/10/23/improving-jwt-authentication-in-apache-nifi/
https://en.wikipedia.org/wiki/ISO_8601#Durations
https://nifi.apache.org/docs/nifi-docs/rest-api/index.html
but still it fails and the curl is unable to trigger the Nifi processor.
Thank you in advance !