Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a node.js project and I need to do a connection with facebook. I picked some facebook libraries. The last one that I liked was facebook-wrapper. Their example works perfect, but when I add express.static(__dirname + '/public'), I get an error: Cannot POST /. I tried with connect too, but I have the same error.

var server = express.createServer( 
  express.logger(), 
  express.bodyParser(), 
  express.cookieParser(), 
  express.session({ secret: 'secret123' }), 
  facebook.auth(options), 
  express.static(__dirname + '/public')
); 
share|improve this question
1  
You need to show some code. It's possible that you're putting express.static in the wrong place in the middleware stack, but without seeing code, it's impossible to tell. – ebohlman Jun 15 '12 at 1:09
var server = express.createServer( express.logger(), express.bodyParser(), express.cookieParser(), express.session({ secret: 'secret123' }), facebook.auth(options), express.static(__dirname + '/public') ); – Alex Sorin Dachin Jun 15 '12 at 3:22

2 Answers

up vote 1 down vote accepted

The problem is that the static middleware doesn't serve requests coming with POST method. You have to handle it in router explicitly, like this:

app.post('/', function(req, res) {
    res.sendfile(__dirname + '/public/index.html');
});

However there is a pull request to ease this: https://github.com/senchalabs/connect/pull/482.

share|improve this answer

Order of arguments matters for Connet and Express. Rearrange the arguments. Try putting 'facebook.auth(options)' as last argument.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.