Dear all,
I am trying to use the password login for the V8 API.
Currently I am sending the following information to the /Api/access_token URL:
{
“grant_type”: “password”,
“client_id”: “e14c034b-XXXX-XXXX-XXXX-6032411a7d9d”,
“client_secret”: “XXXXX”,
“username”: “outlookclient”,
“password”: “XXXX”
}
I am always getting the following error message:
{
“error”: “unknown_error”,
“message”: “The password is invalid: XXXX”
}
I have tried to send the password plain and as an MD5 hash: Both lead to the same result.
I have also tried it with existing and newly created users, both with the same result.
I am currently trying this on Postman.
Can you help me what else I can do to get it running?