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 created an app today, as i've done several times before. But when i wanted to add the app to a a page i couldn't find the link "view this apps profile page", which I normally use to add the app to my pages.

Anyone know how to add apps to a page, with the new "auth dialog" thing ?? I can't find a link to the apps profile page.

share|improve this question

2 Answers

up vote 11 down vote accepted

You can do it in several ways:

  • Using Add Page Tab Dialog as described in documentation:
    • With JavaScript not even leaving page where this get called FB.ui({method: 'pagetab'});
    • By redirecting to https://facebook.com/dialog/pagetab?app_id=APP_ID&redirect_url=URL
  • Via link http://facebook.com/add.php?api_key=APP_KEY&pages=1&page=PAGE_ID
  • From Application Profile page (you can easily get to it via http://www.facebook.com/apps/application.php?id=APP_ID or via shorthand http://facebook.com/APP_ID or by clicking on Application Name in the left bottom corned of every page while visiting Application Canvas) (note that newly created apps don't have an Application Profile page - as discussed on the Developer Blog )
  • Using the API directly with a manage_pages access token - details in the Page documentation.
share|improve this answer
@Igy, thanks for clarification! – Juicy Scripter Dec 21 '11 at 21:17
1  
Also: https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&next=YOUR_URL – thaddeusmt Jan 10 '12 at 1:11
@thaddeusmt, this is called "Add Page Tab Dialog" and listed as an option one. – Juicy Scripter Jan 10 '12 at 3:44

I have found this to work the best:

http://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&redirect_uri=http://www.facebook.com
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.