0

当我尝试在 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}}"
}

我在这里做错了什么?

4

1 回答 1

0

猜测您在到达此步骤之前已完成授权。

IEhttps://{shop}.myshopify.com/admin/oauth/authorize?client_id={api_key}&scope={scopes}&redirect_uri={redirect_uri}&state={nonce}&grant_options[]={access_mode}

此外,IIM 猜测花括号中的值已替换为正确的变量:)

于 2020-06-11T19:19:55.770 回答