Why does it always happen to me?
This happens after my application verify for user user login and redirect user to the authentication page:
https://w
I had the same problem; it turned out FB requires a string appID and not an int...
//DOESNT WORK: $facebook = new Facebook(array( 'appId' => 147XXXXXXXXXXX, 'secret' => 'XXXXXXXXXXXXXX', )); // WORKS: $facebook = new Facebook(array( 'appId' => '147XXXXXXXXXXX', 'secret' => 'XXXXXXXXXXXXXX', ));