Status Code 403: "Insufficient permissions to fulfill the request."
I am very confused as to why I am getting the following response from the eBay API using their own API explorer tool. The OAuth User Token is generated automatically by eBay.
```
{
"errors": [
{
"errorId": 1100,
"domain": "ACCESS",
"category": "REQUEST",
"message": "Access denied",
"longMessage": "Insufficient permissions to fulfill the request."
}
]
}
```
Here is my web service URI that I am trying to access:
4 comments
maphil6778
·2 years agoIf you do use the get auth token link then it refreshes everything. I was having the same thing because I was using the API in my application, and testing the tool at the same time.
onned_0
·3 years agoDon't know if this is still relevant, but I just faced this issue myself. The problem is, if you look into your application keys, and the scope of the key, you will only see sell-related stuff. In the API explorer, it says that the buy APIs are limited release, so you probably won't get one.
gofish63
·2 years agoI'm afraid none of the above helps.
maphil6778
·2 years agoDid you find a fix for this gofish?