I'm developing a FB-app, which I want to make a canvas and a mobile app. As a canvas app it's working like a charm, but the mobile version of the app is freaking me out. I'm getting the error-message: "Error occurred with APP NAME. Please try again later".
My settings for the app look like this: https://www.evernote.com/shard/s113/sh/5d1684a4-130e-472c-86aa-d9f4f7f43b8c/9b2d8e84775c7fe7740a4619b6cae244
The strange thing about that is, if I deactivate the Handy-Web URL, and activate it again, go back to my mobile phone and refresh the page, then it works...
I cannot figure it out... and google also doesn't find any suggestions for my problem
EDIT:
Finally... I found the solution for my problem. The mistake was the redirect_uri!
First I had:
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'user_likes',
'redirect_uri' => http://apps.facebook.com/myapp
));
but instead it needs to be:
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'user_likes',
'redirect_uri' => http://yourdomain.com/urltoapp
));