0

Is there any reason to use POST method in HttpURLConnection?
It is easier for me to use just GET, but I need to send password.
So is there any big risk when sending password by GET?

Phantômaxx
  • 36,442
  • 21
  • 78
  • 108

1 Answers1

0

No there is no difference in case of security. You can send your password with GET if it's simpler to implement. but in both case password has to be hashed before sending it, if you are worried about the security.

Milad Moosavi
  • 1,450
  • 7
  • 19