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.

Facebook recently notified they are deprecating support for app profile pages.

Apps created after Dec 10th no longer have the app page option, together with the "add to my page" functionality, and must use the new Add page tab dialog.

After the user selects which page to add the application to, is there any way to redirect the user to the selected page?

Similar functionality existed in the "old" add to page dialog, e.g.
https://www.facebook.com/add.php?api_key=MY_ADD_ID&pages=1

Activating the dialog with a response function seems to bring no result.

`


// Add app to page
function addToPage() {

// calling the API ...
FB.ui({
        method: 'pagetab',
        redirect_uri: 'MY_URL',
    },function(response) {
        alert(response);
    });

}

` So, two questions:
a) Is there any possibility for the app using the dialog to "know" which page was selected?
b) Is there any way to redirect the user to the selected page.

Thx!

share|improve this question

4 Answers

up vote 12 down vote accepted
<script type="text/javascript">
      function addToPage() {

      // calling the API ...
      FB.ui(
        {
            method: 'pagetab'
        },
        function(response) {
            if (response != null && response.tabs_added != null) {

                $.each(response.tabs_added, function(pageid) {
                      alert(pageid);
                });
            }
        }
      );

      }
  </script>

Use above code...you will get page id of pages selected by the user

share|improve this answer
Hi, Thanks for that, it works! Is there any documentation for these things? I got it to work with a slight code change: (Sorry, but couldn't get it to paste as code...) ` function addToPage() { // calling the pagetab API FB.ui({ method: 'pagetab' }, function(response) { if (response && response.tabs_added) { for (pageid in response.tabs_added) { alert(pageid); } } } }); } ` – Yaron Cohen Jan 9 '12 at 10:52
I cannot get the response from dialog when app in a page tab. Dont know why. – YNhat May 9 '12 at 17:19

but what if the user has a custom name for its page.

i modify devson.. code a bit

    FB.ui(
    {
        method: 'pagetab',
        redirect_uri: '',
    },
    function(response) {
        if (response != null && response.tabs_added != null) {

            $.each(response.tabs_added, function(pageid) {
                  FB.api(pageid, function(response) {
                  alert('redirect to ' + response.link);
                    });


            });

        }
    }
  );
share|improve this answer

This used to be simple, using the facebook UI.("Add to My Page") Unfortunately facebook removed this.

You can add it using www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&next=YOUR_URL

I put this an html and publisched it below. Just visit, enter your app params, hit submit, and our done.

http://www.jibecompany.com/2012/add-a-facebook-page-tab-application-to-your-page

share|improve this answer

Since you can add to several pages at once, I doubt that it is directly possible to fetch which page it was added to. You can try adding the page via the API, although of course that is quite a bit more complicated...

share|improve this answer

protected by Community Nov 10 '12 at 13:56

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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