42. You are designing a RESTful API for a financial application that deals with sensitive customer data. What security measures should you consider when designing the authentication system for this API?
1 point
Use HTTP Basic Authentication with SSL/TLS for all requests.
Implement OAuth 2.0 with JWT (JSON Web Tokens) for secure authentication and authorisation.
Use a custom authentication mechanism with a shared secret key for all clients.
No authentication is needed since SSL/TLS provides sufficient security.
FUO