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 trying to figure out how to redirect users to a different page in a Page Tab Application similar to this one

share|improve this question
I think FB.Event.subscribe() is what you are looking for. - Attaches a handler to an event and invokes your callback when the event fires. – Lix Jul 2 '12 at 15:25

1 Answer

You can use the Feed Dialog and set the redirect_uri parameter – The URL to redirect to after the user clicks a button on the dialog..

With the following Javascript code you can do that:

    FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});

    function postToFeed() {

      // calling the API ...
      var obj = {
        method: 'feed',
        link: 'URL_TO_SHARE',
        picture: 'SHARING_PICTURE',
        name: 'SHARING_TITLE',
        caption: 'SHARING_CAPTION',
        description: 'SHARING_DESCRIPTION',
        redirect_uri: 'URL_TO_REDIRECT_AFTER_ACTION'
      };

      function callback(response) {
        // Some callback action ...
      }

      FB.ui(obj, callback);
    }

Then you bind postToFeed function to click event of a button or link.

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.