| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

Node.js的OAuth扩展 OhAuth

OhAuth 是基于 Node.js 的扩展,用于简化 OAuth 的开发,实现客户端无重定向的 OAuth 认证支持。

示例代码:

    var Express = require('express')        , app = Express.createServer(Express.favicon(),Express.static(__dirname))        , OhAuth = require('./ohauth')        , strategies = require('./ohauth-strategies');          var cK = 'consumerKey', cS = 'consumerSecret'          , ohAuth = new OhAuth(strategies.推ter(cK,cS,'http://127.0.0.1:1337'),app);        app.configure(function(){          app.use(app.router);          });        app.listen(1337);      app.get('/', function (req, res) {        res.sendfile(__dirname + '/index.html');      });        // when you're done, you'll get an access key and an access secret printing out here      app.get('/oauth/success',function(req,res){          res.send(req.session.credentials);      });

项目主页:http://www.open-open.com/lib/view/home/1338166367698

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1338166367698.html
Node.js OAuth开发包