Disable redirect in fb:request-form Send/Cancel button

3.8k Views Asked by At

How do I disable the redirect in Facebook's invite form?

<fb:serverfbml style="width: 600px; height: 650px;">
        <script type="text/fbml">
            <fb:request-form 
                action="index.php"
                method="POST"
                invite="true"
                type="MyApp"
                content="Please have a look. 
        <fb:req-choice url='http://apps.facebook.com/myapp/' label='View Now!' />">                 
    <div class="clearfix" style="padding-bottom: 10px;">
        <fb:multi-friend-selector condensed="true" style="width: 600px;" />
    </div>
    <fb:request-form-submit />
</fb:request-form>

After selecting friends, you will see the final Send Invite dialog with your template. After you click send or cancel, how do i disable the redirect by just closing the the dialog?

Thanks.

4

There are 4 best solutions below

0
On

just add target="_blank" in the request-form parameters...

0
On

I can't get this work too, but someone in the facebook developer forum seems solved it:

<script>
function callback()
{
// do whatever
}
</script>

<fb:request-form action="javascript:callback()" >
</fb:request-form>

http://forum.developers.facebook.com/viewtopic.php?pid=213360

(this does not work for me....)

1
On

Can you just blank out or remove the action parameter of the form?

0
On

FBML has since been deprecated.

Here is an easy alternative to the <fb:multi-friend-selector> :

You can use the Facebook JavaScript SDK to call the FB.ui() method with the apprequests parameter. This will display to your users a popup similar in UI to the <fb:multi-friend-selector>. Here is an example of what it looks like :

And this is what the code to call the FB.ui() method looks like :

  FB.ui({method: 'apprequests',
      message: 'My Great Request',
    }, function(){
      // handle response data here
   });
  }

The response that you get from apprequests is this :

  • The Request Object ID : To get the full Request ID, concatenate this with a user ID from the to field: <request_object_id>_<user_id>
  • to : An array of the recipient user IDs for the request that was created.