Silex/Symfony app working, but not in Facebook Silex/Symfony app working, but not in Facebook symfony symfony

Silex/Symfony app working, but not in Facebook


If your app is loaded inside facebook (in an iframe), the very first request is POST, not GET. Your route is defined as get-only. Change it to ->method() (or even ->post(), but I recommend method), and it'll work.