facebook apprequests dialog error “An error occurred. Please try again later.”

3.4k Views Asked by At

I was searching all possible topics but now solution works for me.

There is my code, which works in all browsers except Chrome. There is just window with An error occurred. Please try again later..

It is identical code from FB documentation.

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>

<script>
  FB.init({
    appId  : {$appId},
    frictionlessRequests: true
  });

  function sendRequestViaMultiFriendSelector() {
    FB.ui({ method: 'apprequests',
      message: '{_"FACEBOOK_INVITE_WINDOW_MESSAGE"}'
    }, requestCallback);
  }

  function requestCallback(response) {
    //callback code
  }
</script>

<a onclick="sendRequestViaMultiFriendSelector(); return false;">
3

There are 3 best solutions below

1
On

This might be because your application is still in sandbox mode.

0
On

You have not stated if your application is on Facebook or not. The reason this is important is because of the canvas_url parameter of your application settings. If you are on apps.facebook.com/app_namespace, then you'll already have this field filled out. However some projects simply do not operate on Facebook itself. In such cases people don't really "need" to fill in this parameter. It is however necessary for app requests to work.

When a user acts on an application request (IE accepts it), they are redirected to the canvas url of that application. Not specifying the canvas url can nullify the request. This might also be the reason for the error.

Try setting your canvas url. You can even have it redirect to your proper URL, it doesn't have to "do" anything else.

0
On

You have to specify the display option for the dialog ('popup, 'iframe'...)

For example:

FB.init({
  appId  : {$appId},
  frictionlessRequests: true,
  display: 'popup'
});