Im trying to authenticate an user in Gravitee AM using OAuth, is the step to get the access token... but i notice that the credentials are passed as query param and not in the body request (as may to be for me... i think), is configuration needed to change this or is an best practice (if Yes, can help me showing the source of the declarative).
the definiton of how to authenticate:
curl -X POST \
'http://GRAVITEEIO-AM-GATEWAY-HOST/:securityDomainPath/oauth/token?grant_type=password&client_id=:clientId&client_secret=:clientSecret&username=:username&password=:password&scope=read' \
Regards!