using the curl example here, I am getting an 500 Internal error.
server=“https://eu.airvantage.net”
login=“”
password=“”
client_id=“”
client_secret=“”
curl -s “${server}/api/oauth/token?grant_type=password&username=${login}&password=${password}&client_id=${client_id}&client_secret=${client_secret}”
I have checked for all the other parameters and they look fine to me
Has anyone tried curl with their own credentials and is there anything else we need to get this working ?