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, in a Facebook Canvas, aka an HTML iFrame.

I get a blank page with Cannot POST /

The iframe is here (when I do "Open frame in new window" it opens the app). I have no idea what to do here… why do I get a POST /?

I use the Facebook Javascript SDK in the app, but commenting the code doesn't resolve the issue.

link|improve this question
1  
Before anything else, try debugging with Firefox 4. Safari is reluctant to accept third party cookies. Then, you should inspect what is responsible for POSTing something to your app. – Warren Seine May 17 '11 at 23:35
feedback

2 Answers

up vote 2 down vote accepted

It looks like POST for Canvas may be causing your issues.

link|improve this answer
1  
Thanks! I ended up catching the POST parameters in node to redirect users to the authentication page like so: server.post('/', function(request, response){ response.redirect("https://www.facebook.com/dialog/oauth?client_id=FACEBOOK_APP‌​_ID&redirect_uri=CANVAS_URL"); }); – Alexandre Testu May 22 '11 at 22:14
feedback

We solved a similar problem recently by changing this line:

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

to this

app.all('/home', function(request, response) {
link|improve this answer
didnt work for node.js – Maysam Mar 8 at 12:59
feedback

Your Answer

 
or
required, but never shown

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