0

我在 github 上创建了一个带有 FeathersJS 后端的 Oauth 流。在本地主机上运行它时一切正常。目前,我正在 EC2 和 EC2 实例上测试到 AWS 的部署,我无法让流程正常工作。我得到了redirect_uri_error。

{
"error": "redirect_uri_mismatch",
"error_description": "The redirect_uri MUST match the registered callback URL for this application.",
"error_uri": "https://developer.github.com/apps/building-integrations/setting-up-and-registering-oauth-apps/troubleshooting-oauth-app-access-token-request-errors/#redirect-uri-mismatch(2)"
}

我认为羽毛会根据配置文件中的参数自动创建重定向 uri。根据 uri 看起来像这样的文档:http(s)://hostname[:port]/auth/<provider>/callback. 我正在使用以下设置在生产模式下运行该应用程序。我究竟做错了什么?

默认.json:

{
  "host": "localhost",
  "port": 3030,
  "public": "../public/",
  "paginate": {
    "default": 10,
    "max": 50
  },
  "mongodb": "my_mongo_connection_string",
  "authentication": {
    "secret": "my_auth_secret",
    "strategies": [
      "jwt",
      "local"
    ],
    "path": "/authentication",
    "service": "users",
    "jwt": {
      "header": {
        "type": "access"
      },
      "audience": "https://example.com",
      "subject": "anonymous",
      "issuer": "feathers",
      "algorithm": "HS256",
      "expiresIn": "1d"
    },
    "local": {
      "entity": "user",
      "usernameField": "email",
      "passwordField": "password"
    },
    "github": {
      "clientID": "my_client_id",
      "clientSecret": "my_client_secret",
      "successRedirect": "/"
    },
    "cookie": {
      "enabled": true,
      "name": "feathers-jwt",
      "httpOnly": false,
      "secure": false
    }
  }
}

生产.json

{
  "host": "my-ec2-instance.compute.amazonaws.com",
  "port": "3030"
}

Github 配置 github配置

编辑:将 succesRedirect 更改为“/”

4

2 回答 2

0

查看此 feathersjs 博客文章中的示例代码,您似乎需要在配置部分添加一个callbackURL参数,其值与您在 GitHub授权回调 URL设置中配置的值相同。github

另外,我认为您需要将github.successRedirect设置修改为http://my-ec2-instance.compute.amazonaws.com:3030/redirect在 EC2 服务器上运行时的设置,因为您配置的默认值localhost在 EC2 上运行时肯定不起作用。

于 2017-10-29T14:36:21.453 回答
0

好的,我找到了解决这个问题的方法。在生产模式下,羽毛应用程序仍然从 default.json 获取 URL 来构建回调 URL。因此,生产 URL 不仅应该填写在 production.json 中,还应该在 default.json 中输入相同的 URL。

于 2017-11-03T08:44:15.663 回答