我让 Mongoose-Auth 可以工作,但是我该如何对其进行一些自定义操作呢?

发布于 2024-11-03 20:47:04 字数 802 浏览 1 评论 0原文

我按照 Mongoose-auth 上的说明进行操作,并使系统在我的 node.js 上运行: https://github.com /bnoguchi/mongoose-auth

facebook: {
          everyauth: {
              myHostname: 'http://localhost:3000'
            , appId: 'YOUR APP ID HERE'
            , appSecret: 'YOUR APP SECRET HERE'
            , redirectPath: '/home'
          }
        }

因此,我使用 Mongoose-auth 执行此操作,并且能够通过 Facebook 进行连接。我想要的是在 Facebook 回击我后“做点什么”。现在,它只是将我重定向到“主页”,然后让用户登录。我想在它将我重定向到主页之前做一些事情。我该怎么办?

在 EveryAuth 中,我使用以下方法做到了:

.findOrCreateUser( function (session, accessToken, fbUserMetadata) {
    // find or create user logic goes here
  })

但我猜这在 mongoose-auth 中不可用......因为这不在文档中。

I followed instructions on Mongoose-auth and got the system working on my node.js: https://github.com/bnoguchi/mongoose-auth

facebook: {
          everyauth: {
              myHostname: 'http://localhost:3000'
            , appId: 'YOUR APP ID HERE'
            , appSecret: 'YOUR APP SECRET HERE'
            , redirectPath: '/home'
          }
        }

So, I did this with Mongoose-auth, and I was able to connect through Facebook. What I want is to "do something" after Facebook hits me back. Right now, it just redirects me to "home", and logs the user in. I want to do something before it redirects me to home. How can I do taht?

In EveryAuth, I did it using this:

.findOrCreateUser( function (session, accessToken, fbUserMetadata) {
    // find or create user logic goes here
  })

But I'm guessing that's not available in mongoose-auth....since that's not in the docs.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉风有信 2024-11-10 20:47:04

您可以通过 everyauth 访问的所有内容都可供 mongoose-auth 使用。只需将您将在 everyauth 中使用的链接方法从方法调用转换为 mongoose-auth 配置中 everyauth 键中的键值即可:

facebook: {
  everyauth: {
      myHostname: 'http://localhost:3000'
    , appId: 'YOUR APP ID HERE'
    , appSecret: 'YOUR APP SECRET HERE'
    , redirectPath: '/home'
    , findOrCreateUser: function (session, accessToken, fbUserMetadata) {
      }
  }
}

Everything you have access to with everyauth is available to mongoose-auth. Just convert the chained method you would use in everyauth from the method call into a key-value in the everyauth key in your mongoose-auth configuration:

facebook: {
  everyauth: {
      myHostname: 'http://localhost:3000'
    , appId: 'YOUR APP ID HERE'
    , appSecret: 'YOUR APP SECRET HERE'
    , redirectPath: '/home'
    , findOrCreateUser: function (session, accessToken, fbUserMetadata) {
      }
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文