从shopify请求店面访问令牌时遇到问题。我的应用是作为销售渠道安装的,并且具有正确的访问权限(unauthenticated_read_content,unauthenticated_write_customers,unauthenticated_write_checkouts,unauthenticated_read_product_listings)。
我正在向admin/storefront_access_tokens.json
发出POST请求来请求令牌,该令牌的头为X-Shopify-Access-Token
,安装并授权了该应用程序后,令牌的值为Content-Type: application/json
。
请求的主体是JSON
{
"storefront_access_token": {
"title": "Test"
}
}
响应为403禁止,消息为
{
"errors": "Token must be service access."
}
我真的不知道这意味着什么,而且Shopify文档根本没有提到这种错误。
我希望再加上一双眼睛。