Is there a difference, security wise, sending a username and password in the query string versus sending it as a complex object in the body of the POST
?
I am using HTTPS
.
Ex:
myservices.com/auth?username=myname&password=mypass
versus getting the Stream from the request and deserializing it to an object?
Since the method is POST
and uses HTTPS
, does it matter?