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 using the facebook send dialog, and want to redirect to a URL when the dialog closes.

FB.ui({
   method: 'send',
   link: 'http://***.com', 
   redirect_uri: '****', // publicly available URL
   description: '***',
   picture: '***',
   to: userId
   },
);

The message sends and the iframe closes, but does not redirect. Can I uses FB.ui for this, or do I need to build in another callback function?

share|improve this question

1 Answer

If sending the message is successful, the user will be redirected to the redirect_uri. Otherwise, an error will be shown.

As per facebook documentation there is no callback for send method

please refer: https://developers.facebook.com/docs/reference/dialogs/send/

share|improve this answer
The redirect does not seem to be working, so I'm wondering if something needs to be adjusted in my code--or if it's a problem with FB.ui, if I should use a separate callback function. – Jonathan Dayton Apr 3 '12 at 22:43
try giving display as iframe/popup .. reference url:developers.facebook.com/docs/reference/dialogs/#display – Madan Apr 4 '12 at 4:22

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.