Sencha Facebook iFrame app receives “Can not POST /” message

I have a Sencha Touch application using Node.js and Socket.io running on Amazon EC2 (micro instance). I want to make it available on Facebook, on Facebook Canvas, aka HTML iFrame.

I get a blank page with Cannot POST /

iframe here (when I do "Open frame in new window", it opens the application). I don't know what to do here ... why am I getting POST /?

I use the Facebook Javascript SDK in the application, but commenting the code does not solve the problem.

+5
source share
2 answers
+3

, :

app.get('/home', function(request, response) {

app.all('/home', function(request, response) {
+2

All Articles