首页 > 解决方案 > Google shopping api Request had insufficient authentication scopes

问题描述

I make a request to Google shopping by curl:

curl --request POST \
  'https://shoppingcontent.googleapis.com/content/v2.1/products/batch?key=[YOUR_API_KEY]' \
  --header 'Authorization: Bearer [YOUR_ACCESS_TOKEN]' \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --data '{"entries":[]}' \
  --compressed

and the response is

{
  "error": {
    "code": 403,
    "message": "Request had insufficient authentication scopes.",
    "errors": [
      {
        "message": "Insufficient Permission",
        "domain": "global",
        "reason": "insufficientPermissions"
      }
    ],
    "status": "PERMISSION_DENIED"
  }
}

I'm sure my access_token is right, but I'm not sure if my API_KEY is right. My API_KEY is gotten in https://console.cloud.google.com/apis/credentials , and the API_KEY's restrictions is none. enter image description here

And my Content API for Shopping is enabled: enter image description here

I wonder if I miss any critical method, that I can't request the api successfully.

By the way, how can I get my merchant_id? Is it my merchant_id? enter image description here

But the method "Verify and claim your website URL in Business information", I didn't pass. Does it cause to the 403 error?

标签: authenticationcurlgoogle-apipermission-deniedgoogle-shopping-api

解决方案


推荐阅读