How to Yotpo

Im trying to use postman for yotpo. However, im stuck at the process of getting the utoken. I always returns “error getting access token from client_credentials flow. Could not send requests.” Any advice?

Although this forum addresses general question around authentication and authorization it’s aimed mostly at issues and doubts around integration with the Auth0 service. What you describe seems to be a really specific issue between Postman and Yotpo client credentials grant so it’s likely not the topics that the audience of this forum has more experience about. the recommendation would be to try a more general forum like SO or if you think it’s an issue with postman the associated GH repository. A quick google search shows that error message as coming from postman: OAuth 2.0 - Could not send request · Issue #1740 · postmanlabs/postman-app-support · GitHub

Hi,
Billy form Yotpo here.
Even though this is not the best place for this questions, there is no issue with Postman and Yotpo.
Make sure you are passing the Content-Type: application/json header.

Here is an example request:
POST /oauth/token HTTP/1.1
Host: api.yotpo.com
Content-Type: application/json
Cache-Control: no-cache

{
“client_id”: “APP_KEY”,
“client_secret”: “SECRET”,
“grant_type”: “client_credentials”
}