Are there security or other considerations when choosing if a Username and Password should be specified to a REST request as a Query string "?user=key&password=secret" or as the typical Base64 encoded Basic Auth string?
I can do either and I'm not sure in what cases one approach is better than the other? In this scenario HTTPS will always be used.
FWIW, this is only going to be used for authentication and not authorization.