-1

I am currently trying to attach a custom tab to a page. I do this by calling https://www.facebook.com/dialog/pagetab?app_id={my_app_id}&redirect_uri={my_tab_landing}

This results in a error:

Sorry, something went wrong.

We're working on getting this fixed as soon as we can.

Its in this state for 2 days now, anyone else having the same issue?

Niels van Renselaar
  • 1,512
  • 1
  • 9
  • 22

4 Answers4

1

Appearantly there is new url in town;

https://www.facebook.com/add.php?api_key={YOURAPPID}&pages=1

Niels van Renselaar
  • 1,512
  • 1
  • 9
  • 22
  • 1
    And you can point to your page directly: https://www.facebook.com/add.php?api_key={YOUR_APP_ID}&pages=1&page={YOUR_PAGE_ID} Much more cleaner on page admin point of view. – Sándor Tóth Jun 07 '12 at 11:07
  • Funnily enough, that's the OLD URL, and apart from the fact it's a useful workaround for the current bug, i really don't recommend using it – Igy Jun 07 '12 at 11:12
0

a detailed article presenting the problem and a workaround Solution to adding Facebook App to Page

Some more parameter to personnalize the implementation can be found too !

Jimmy
  • 1
0

When you have included the Javascript SDK you can call a nice dialog to select the target page for your app to add:

var obj = {
            method: 'pagetab'
        };

FB.ui(obj); 
dk1
  • 529
  • 5
  • 14