让 XAuth 与 Node.JS 一起使用开放认证
我正在构建我的第一个 Node.js 应用程序,并尝试将其与 Instapaper API 集成。 Instapaper 只使用 XAuth,我有点困惑它是如何工作的。
我应该使用 node-oauth 模块并尝试为 xauth 自定义它吗?或者我应该推出自己的 xauth?或者其他什么,也许?
I'm building my first node.js app, and trying to integrate it with the Instapaper API. Instapaper only uses XAuth, and I'm a little confused how it works.
Should I use the node-oauth module and try to customize it for xauth? Or should I roll my own xauth? Or something else, maybe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会检查类似 EveryAuth 的东西,看看他们如何处理那里的各种选项,分叉它,然后然后通过新的实现做出贡献。
祝你好运。
I'd checkout something like EveryAuth, see how they are handling the various options out there, forking it, and then contributing back with a new implementation.
Good luck man.
以下是如何让它与
oauth
模块一起工作。https://stackoverflow.com/a/9645033/186101
您仍然需要为您的用户存储令牌,但是这个答案应该会让你运行并在节点中测试 API。
Here is how to get it working with the
oauth
module.https://stackoverflow.com/a/9645033/186101
You'd still need to handle storing the tokens for your users, but that answer should get you u and running for testing the API in node.