0

我正在开发一个 wordpress 插件,它从 Lightspeed 零售 API 获取某些产品信息。我按照这里文档中的步骤http://developers.lightspeedhq.com/retail/authentication/access-token/

我有客户端 ID 和客户端密码,但我没有临时令牌,我被困在这一点上,我确定我在这里遗漏了一些程序,你能帮我吗?

这是我根据 API 文档使用的当前代码:

...

    $tokenURL = "https://cloud.lightspeedapp.com/oauth/access_token.php";
    $postFields = [
        'client_id' => 'XXXXXXXXXXXXX',
        'client_secret' => 'XXXXXXXXXXXXX',
        'code' => 'Temporary Token',
        'grant_type' => 'authorization_code'
    ];
...
4

1 回答 1

0

如果您按照此处的说明操作,则会返回临时令牌。

您需要开始使用此 URL:

https://cloud.lightspeedapp.com/oauth/authorize.php?response_type=code&client_id={client_id}&scope={scope}&state={state}

它将在您的应用程序被代码/临时令牌接受后返回。

于 2019-01-23T13:12:41.447 回答