如何使用Node和Express对github进行身份验证

时间:2014-06-16 07:51:04

标签: node.js github express

我有使用Express和node-github的节点示例。我请求令牌,以便用户可以授权应用程序创建要点。我遇到的问题是,要点是像匿名用户一样创建的。

如果我从代码gist中删除了github.authenticate,则会以匿名方式创建。如果我离开github.authenticate没有创建要点并且没有显示错误。

我认为问题在于我必须找到github.authenticate的位置。

我有回电

app.get('/auth/github/callback',function (req, res) {

  var url = Url.parse(req.url);
    var path = url.pathname;
    var query = querystring.parse(url.query);

  var code = req.query.code;
  console.log('/callback');

  OAuth2.AuthCode.getToken({
    code: code,
    redirect_uri: 'http://127.0.0.1:3000/auth/github/callback'
  }, saveToken);

  github.authenticate({
    type: "oauth",
    token: accessToken
  });

  res.redirect('home');
  function saveToken(error, result) {
    if (error) { console.log('Access Token Error', error.message); }
    accessToken = OAuth2.AccessToken.create(result);
  }
});

这是我的帖子。这里创造了要点。

app.post('/test', function(req, res){
    github.gists.create({
      "description": "the description for this gist",
      "public": true,
      "files": {
        "TEST_2.md": {
          "content": "<html><h1>This is a Test!</h1><b>Hello</b></html>"
        }
      }
    }, function(err, rest) {
      console.log(rest);
      res.render('/');
    });
});

我一直在尝试寻找类似的问题,但只是找到了这个问题question以及使用我使用过的模块的答案。

2 个答案:

答案 0 :(得分:3)

我找到了解决方案。我没有使用简单的oauth,而是将其改为oauth。希望它可以帮到某人。

var oauth = require("oauth").OAuth2;
var OAuth2 = new oauth(GITHUB_CLIENT_ID, GITHUB_CLIENT_SECRET, "https://github.com/", "login/oauth/authorize", "login/oauth/access_token");

app.get('/auth/github',function(req,res){
   res.writeHead(303, {
     Location: OAuth2.getAuthorizeUrl({
       redirect_uri: 'http://127.0.0.1:3000/auth/github/callback',
       scope: "user,repo,gist"
     })
    });
    res.end();
});

app.get('/auth/github/callback',function (req, res) {
  var code = req.query.code;
  OAuth2.getOAuthAccessToken(code, {}, function (err, access_token, refresh_token) {
    if (err) {
      console.log(err);
    }
    accessToken = access_token;
    // authenticate github API
    console.log("AccessToken: "+accessToken+"\n");
    github.authenticate({
      type: "oauth",
      token: accessToken
    });
  });
  res.redirect('home');
});

github.gists.create({
      "description": "the description for this gist",
      "public": true,
      "files": {
        "TEST_2.md": {
          "content": "<html><h1>This is a Test!</h1><b>Hello</b></html>"
        }
      }
    }, function(err, rest) {
      console.log(rest);
      console.log(err);
      res.render('/');
    });

答案 1 :(得分:0)

我通过以下方式进行了同样的操作:

     exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['sg-image.js'],
framework: 'jasmine2',
capabilities: {
    'browserName': 'chrome',
    'useAutomationExtension': false,
    'args': ['--disable-gpu','-disable-dev-shm-usage','--no-sandbox','- 
            disable-popup-blocking','--start-maximized','--disable-web- 
           security','--allow-running-insecure-content','--disable-infobars']
}
        // onPrepare: function() {
//     global.screenShotUtils = new screenShotUtils({
//         browserInstance : browser
//     });
// }