Hi Team,
I am trying generate a token for Glue backend API
curl --location '
http://glue-backend.de.spryker.local/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Accept: application/json' \
--data-urlencode 'grant_type=password' \
--data-urlencode 'username=<BO dmin user mail ID> ' \
--data-urlencode 'password=<BO user pwd>'
but getting [
{
"status": 400,
"code": "invalid_client",
"message": "Client authentication failed"
}
]
in DB, I could observe one Oauth client with identifier frontend
Can someone explain how client ID is fetched when we pass the password grant type ?