Lifelog API 资源管理器:无法完成授权请求

Lifelog API Explorer: Authorization request could not be completed

我想为我自己的网络应用程序使用生活日志 api 来存储我自己的数据并使其适应我的需要。我试着研究它,但不幸的是我无法让 api 资源管理器(查看它是如何工作的)工作。当我尝试使用身份验证 OAuth2 并登录到我的 google 帐户时,它不断给我以下错误:

Authorization request could not be completed. Reason: Access token request to API provider failed.

If the problem persists, please contact Customer Support.

不幸的是,我对基于 REST 的服务没有太多经验,我在这里搜索了答案,但没有找到任何可以开始的东西。我使用最新版本的 Google Chrome 并且也尝试过 Edge(我不奇怪为什么它不能在那里工作)。有人可以帮忙吗?

不幸的是,API 资源管理器目前无法正常工作。该团队正在努力解决该问题。同时你可以试试 postman 来玩转 API。

https://www.getpostman.com/

这是实现它的一种方法:

  1. 设置获取请求到:https://platform.lifelog.sonymobile.com/v1/users/me
  2. 在 "Authorization" 下单击 "Get Access Token"。
  3. 在这里你会看到一个回调URL。进入您的 Lifelog API 管理并使用提供的回调注册一个应用程序:https://developer.sony.com/develop/services/lifelog-api/create-app/
  4. 完成后,将 API 管理控制台提供的客户端 ID 和密码添加到 Postman,然后单击 "Get Access Token"
  5. 您将获得一个访问令牌。为其命名并点击保存。
  6. 现在点击 Headers 并添加 "Authorization" 作为 "URL Parameter Key" 和 "Bearer ##Enter your access token here##" 作为 "Value"
  7. 此时单击发送,您应该会收到来自 API 的结果。

如果这对您不起作用,请告诉我。