I am using Camunda 8.8 as C8run.exe and springboot starter. Now, I am trying to fetch all user task using below code but throwing “Unauthorised” 401 error.
Any idea? why looking for auth if accessing directly service layer instead of API call?
How to do?
List<UserTask> taskList = this.camundaClient.newUserTaskSearchRequest().send().join().item()
NOTE: I have active user task in camunda tasklist UI
TIA.