当我尝试在 shopify 中为我的应用获取访问令牌时,而不是返回
{ "access_token": "{{token}}", "scope": "{{scopes}}" },
我得到一个重定向:
(响应代码:303)
<html><body>You are being <a href="https://{{shop}}.myshopify.com/admin/auth/login">redirected</a>.</body></html>.
我的要求是:
邮政
https://{{shop}}.myshopify.com/admin/oath/access_token
身体:
{
"client_id": "{{app_key}}",
"client_secret": "{{app_secret}}",
"code": "{{authorization_code}}"
}
我在这里做错了什么?