Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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".

https://www.evernote.com/shard/s113/sh/506ce826-4b1b-4f09-8447-378c8520fa2c/8e8a8cceca19f9813d83a71863f86160

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
));
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.