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')
);
express.staticin the wrong place in the middleware stack, but without seeing code, it's impossible to tell. – ebohlman Jun 15 '12 at 1:09