I have a problem when I am trying to add my application to one of my pages. Earlier there has been an option in the left sidebar which simply says view profile application and then you could choose "Add to my page". Now that option is gone and instead there is just an option that says "view application timeline" or something like that. I cannot find how to add my applications to my different pages.

Anyone who have any idea how to solve this problem?

(I'm from Sweden, which explains my bad english)

Thank you!

link|improve this question
feedback

3 Answers

Please see https://developers.facebook.com/blog/post/611/ This explains the recent changes to how Apps are associated with Pages and shows both how to create a community page and link it to an app, and how to use the new 'add to page' dialog

You can also add apps to a page via the API, see https://developers.facebook.com/docs/reference/api/page/#tabs

link|improve this answer
feedback

try my "fix" @ http://admine.eu/addapp.html

here is part of the source and actually all you need:

window.open(
  "http://www.facebook.com/dialog/pagetab?app_id=" +
  document.getElementById("appid").value +
  "&next=" +
  document.getElementById("appurl").value,

  "PageTab","width=1000,height=300"
)

+document.getElementById("appid") is the id of your app
+document.getElementById("appurl") is the canvas or tab URL of your app

link|improve this answer
feedback

The short version: Enter this URL into your browser. Remember to replace YOUR_APP_ID first. There's currently no way to add an application just by clicking a link like before... :/

http://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&redirect_uri=http://www.facebook.com

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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