Looking for recommendations for security in sending token (e.g. JWT Token) through a GET vs POST request to the server.
There are two options:
- Sending token through Headers as part of HTTP GET request
- Sending token via request Headers/Body as part of HTTP POST request
Note: TLS is used for securing the connection.