Sep 9, 2018 · 1 min read
Just curious, why are you using RequestParam in a http post such as /users/signin? Should we use RequestBody instead? Instead of /users/signin?username=<username>&password=<password>, we may want to use the post body:
{
“username”: “admin”,
“password”: “admin”
}