Possible Duplicate:
Create facebook tab for only my company page
Is there any way to limit who can add a facebook application to their page. Take this Application as an example: http://www.facebook.com/apps/application.php?id=113740922048869
On the lower left there is a link to “Add to My Page”. How do I prevent apps from being publicly available for anyone to add? I don’t see any settings other than putting the app in “sandbox mode” that would limit who could add the app. Here is the content for the description of sandbox mode:
“If enabled, only app developers will be able to use app.”
The purpose of this app is to detect whether or not the user viewing it is a fan of the page it is on and then display content for fans. In this scenario it doesn’t make any sense for anyone else to add this app to their page other than the intended fan page whom I have administrative rights to. Am I being incredibly dense here?
I don’t know of a setting to prevent people from adding it to their page, but as Igy said, any app can check the
signed_request['page']['id']parameter to make sure the app is being loaded from an authorized page:If you are already checking the
signed_requestdata for whether the user likes the page, it’s not too much more to check thepageparameter to check that the app is accessed through your page.