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 have implemented FB Multi Friend Selector as explained on this page https://developers.facebook.com/docs/reference/dialogs/requests/

  function sendRequestViaMultiFriendSelector() {
    FB.ui({method: 'apprequests',
      message: 'My Great Request'
    }, requestCallback);
  }

However I want to send the custom Url to the User, since my Facebook App has some parameters at the end like below http://apps.facebook.com/MY_APP_NAME/MY_PARAMETERS

However with the above method, the user is getting the following link with the MY_PARAMETERS Omitted

I cann't see any "url" parameter in the "apprequests" method. However, this is something that Sweepstakes does successfully. They are able to pass all their parameters in the Message and I want to copy the same functionality.

Thanks in Advance.

share|improve this question
Have you tried using the Direct URL method, as described further down the page? – Callum McLean Sep 13 '12 at 14:04

1 Answer

up vote 0 down vote accepted

The request will point the accepting user to your canvas URL – there is nothing you can change about that.

However, if you need to pass custom data along “with” the request – there’s the data parameter of the dialog for that. You will get the info you put in there back, after reading the details of the request object from the API.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.