Hi,
I have a ZODB structure like the following:
root/
├── acl_users
└── main_app
├── api
│ ├── acl_users
│ └── crm
└── user folder(PluggableAuthService)
The acl_users folder within the api
folder is used for the external service to connect to the api
.
This works when the correct credentials are provided, but in case there is e.g. a problem with the password, there is an automatic attempt to authenticate at the user folder from above (PluggableAuthService
), which
a) can never succeed anyway
b) sends the api-client an HTML page with a login dialog via a 302
Is it possible to prevent that the failed login attempt bubbles up and tries to authenticate with the user folder provided by PluggableAuthService
?
Thanks!