You are developing a RESTful API and need to ensure that sensitive user data is secure during transit. Which approach would you use to secure data transmission?

  • a) Encoding data as plain text
  • b) Using HTTPS (SSL/TLS)
  • c) Encrypting data with a custom algorithm
  • d) Adding authentication tokens to requests
The most secure approach for securing data in transit in a RESTful API is to use HTTPS (SSL/TLS). It encrypts the data between the client and server, providing confidentiality and integrity.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *