使用OAuth2.0 Playground进行测试



我想测试一些来自邻近信标API的API请求。因此,我按照这个站点的步骤,将一个测试重定向url (https://developers.google.com/oauthplayground)放入OAuth-2.0-Client-ID中。当我尝试从游乐场发出请求时,我得到以下输出:

{
  "error": {
    "status": "PERMISSION_DENIED", 
    "message": "Google Proximity Beacon API has not been used in project google.com:oauth-2-playground before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/proximitybeacon.googleapis.com/overview?project=google.com:oauth-2-playground then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.", 
    "code": 403, 
    "details": [
      {
        "@type": "type.googleapis.com/google.rpc.Help", 
        "links": [
          {
            "url": "https://console.developers.google.com/apis/api/proximitybeacon.googleapis.com/overview?project=google.com:oauth-2-playground", 
            "description": "Google developers console API activation"
          }
        ]
      }
    ]
  }
}

显然它使用了错误的项目,但我只走了一步,我可以选择我的帐户,但不能选择我的项目。我检查了一切两次,我唯一的猜测是,我不能使用这个redirect_url。

所以我的问题:为什么它试图使用项目google.com:oauth-2-playground而不是我的?我怎样才能改变这一切呢?

在OAuth 2.0 Playground使用的默认凭据上未启用邻近信标API。我刚刚启用了这个API,现在它应该可以工作了。

或者,你可以设置OAuth 2.0操场使用你自己的应用程序的OAuth凭据(客户端ID和客户端秘密)在操场的配置菜单。

相关内容

  • 没有找到相关文章

最新更新