Hi, @Crisso.
Just curious, where are you making the `fetch` call to `/oauth/token`? Is that on the backend server or frontend client? Can you provide a working minimum, reproducible example?
Also, I'm assuming you've successfully made a call to the `/oauth/authorize` endpoint to get the authorization code. Where are you making that API fetch call? On the backend server or frontend client?
@Frank Faustino
I've been making both the calls to `/oauth/authorize` and the API fetch calls on the frontend, like so:
```
fetch(`https://sandbox.dev.clover.com/oauth/token?client_id=${appId}&client_secret=${appSecret}&code=${cloverCode}`)
.then(results => { return results.json(); })
.then(data => { console.log(data)
```
1 Person is following this question.