I'm trying to find a way to have multiple possibilities to authenticate against a controller method. The current way to authenticate against the API is through NTLM, because until now it was only possible to call the API from a windows machine. Now I also want to reach the API from a Linux server and have to use a different authentication method than NTLM (for example: use an API Key).
My question is: How can I register multiple methods for authentication and allow the request if at least one of these is successful?