Express.js连接到Twitter

时间:2015-07-18 21:47:22

标签: javascript node.js express oauth grant-oauth

我正在尝试使用Twitter在我的Windows 7计算机上使用Express.js和Grant进行Oauth身份验证。当我在命令行中运行node app.js时,我得到以下内容:

问题是为什么MADE IT HERE也不会在控制台中输出。 另外,我应该在app.js中放置什么秘密,我目前“非常秘密”?这需要是我的消费者秘密还是任何字符串?

我正在使用Xampp,当我想在我的浏览器(Chrome)中运行时,我指示:http://dummy.com:3000/我得到'此网页不可用'。如果我转而直接到http://localhost/xampp/phptest/lions/idk/run.html,那么我会得到一个空白的网页。我应该使用哪个?

我试图跟着这个:https://scotch.io/tutorials/implement-oauth-into-your-express-koa-or-hapi-applications-using-grant#configure-express

以下是我的所有文件:

app.js

var express = require('express')
 , logger = require('morgan')
  , bodyParser = require('body-parser')
  , cookieParser = require('cookie-parser')
  , session = require('express-session');
var fs = require('fs');
var obj = JSON.parse(fs.readFileSync('./config.json', 'utf8'));
var Grant = require('grant-express')
  , grant = new Grant(obj) ;

var app = express();
app.use(logger('dev'));
app.use(grant);
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: true}));
app.use(cookieParser());
app.use(session({
  name: 'grant', secret: 'very secret',
  saveUninitialized: true, resave: true
}));
app.get('/handle_twitter_callback', function (req, res) {
  console.log('MADE IT HERE');
  console.log(req.query);
  res.end(JSON.stringify(req.query, null, 2));
});

app.listen(3000, function() {
       //document.getElementById("holder").innerHTML="GOT HERE";

  console.log('Express server listening on port ' + 3000);

});

config.json

{ "server": {
    "protocol": "http",
    "host": "dummy.com:3000"

  },
  "twitter": 
  {
    "key": "myconsumerkey",
    "secret": "myconsumersecret",
    "callback": "/handle_twitter_callback"

    }
   } 

的package.json

{
  "name": "app",
  "version": "1.0.0",
  "description": "",
  "main": "app.js",
  "scripts": {
    "start": "node app.js"
  },
  "bin": "./",
  "author": "",
  "license": "ISC",
  "dependencies": {
    "body-parser": "^1.13.2",
    "cookie-parser": "^1.3.5",
    "errorhandler": "^1.4.1",
    "express": "^4.13.1",
    "express-session": "^1.11.3",
    "fs": "0.0.2",
    "grant-express": "^3.3.3",
    "jade": "^1.11.0",
    "method-override": "^2.3.4",
    "morgan": "^1.6.1",
    "multer": "^0.1.8",
    "serve-favicon": "^2.3.0"
  }
}

run.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>run</title>
        <meta name="author" content="stephen" />
        <!-- Date: 2015-07-17 -->
    </head>
    <body>
    <script src="app.js"> </script>
    </body>
</html>

1 个答案:

答案 0 :(得分:1)

这里有几点需要注意:

1)重要的是要注意node.js是服务器上的JavaScript。如果您使用node.js,则不需要xampp。 Xampp是一个通常用于运行php的服务器。 Node正在创建一个服务器,因此您根本不需要使用xampp。

app.listen(3000, function() {
  console.log('Express server listening on port ' + 3000);
});

您的app.js文件是否告诉您的服务器在端口3000上运行。只需点击localhost:3000即可查看您从app.js文件中提供的任何页面。

2)如果您希望在控制台上打印一些内容,请使用console.log('something');,然后您就会在与Express server...内容相同的控制台中看到它。请注意,您使用的是服务器控制台,而不是浏览器的控制台。您似乎正在尝试使用//document.getElementById("holder").innerHTML="GOT HERE";从服务器文件中更改浏览器中的内容,这可能不是您要查找的内容。您需要包含一个文件来运行客户端来操作dom的东西。

3)

 app.get('/handle_twitter_callback', function (req, res) {
  console.log('MADE IT HERE');
  console.log(req.query);
  res.end(JSON.stringify(req.query, null, 2));
});

您需要前往localhost:3000/handle_twitter_callback才能达到,我相信您会看到您正在寻找的东西。

我建议点击一个解释节点的教程,并在没有任何额外内容的情况下完整表达,然后尝试使用OAuth。