For some time, we have get some requests from our clients, that our application has stopped working, and more specifically: the user search functionality (this is one of the core functionality our application).
After a deeper analysis, I noticed that the functionality, that has been working for almost 2 years suddenly always returns 0 results.
This is the REST, which we are used:
AP.request(‘/rest/api/search?limit=10&cql=user.fullname~’${fullname}’’)
also we are tried this query:
AP.request(‘/rest/api/search/user?limit=10&cql=user.fullname~’${fullname}’’)
but the result is still the same.
I would like to hear some answers to the questions:
- What is the reason this sudden changes
- How in the current situation, can I replace this user search functionality to another one?
- Is there any working workaround?
I can add, that application working with none authentication (this is very simple app):
“authentication”: {
“type”: “none”
},