Hi,
I'm adding access to Joomla Web Service API to a project using user Token, but when I try to access, it seems that htaccess generated by Admin Tools is blocking my request.
This is the kind of request I'm doing:
curl --request GET \
--url https://mydomain.com/index.php/v1/bwc/calls/1/levels\?filter[level]=1 \
--header 'Authorization: Bearer JSONTOKEN' \
--header 'content-type: application/json'
Funny thing is that I started allowing public requests to the endpoint and it worked fine, but after setting it with proper permissions and adding the JSON token, it no longer works.
If I use Joomla default htaccess, the webservice endpoint works without issues.
Where should I look?