How do I get a Facebook app I've created to show up on a Facebook "Page"? - facebook

I have successfully created a Facebook application. I have successfully added the application to my Facebook "Page". After I do this, no link for the app shows up in the menu on the left. This seems like something that should be simple to do, yet I can't find any documentation that is up-to-date. Any help is greatly appreciated.

Configure the Page Tab settings in your application settings under Facebook Integration.

Go to the developer page where you get the list of your apps.
Click on the more link next to your app, and choose Application profile.
Once you are on the app profile, on the sidebar menu click on Add to my page and choose the page where you want to add the tab.
Note that you must have your app tab configured properly inside your app configuration in order to get this to work i.e. setting the correct domain and tab file.
If you are logged in as the page, I suggest you either creating a profile ID and log in as it, or the solution that #ifaour pointed out, although it will be difficult to find your app inside the search engine that FB provides.

Related

Page settings for an app

We have a facebook app that we have created for people to use on their organization's pages (not personal accounts), and in the past when they wanted to adjust the settings they would go onto the page, go to edit settings, and go to the appropriate app. It would take them to a /settings page that was built into the canvas app.
I can't find where that menu chain is anymore. Edit Settings no longer has anything about apps in it unless I'm on a personal page.
Where do I find this information now?
Thanks!
Edit: For clarification, the place I'm trying to go to is called the 'Page Tab Edit URL'.
Double Edit: I posted a question on the facebook help community - haven't seen anything there either https://www.facebook.com/help/community/question/?id=10151539448667919
On the page having the app click Edit Page and then select Edit settings.
On the Settings page click more... (under the page name) and select apps.
Now you have the old app list with the link to go to app.

How to hide a pre-built app tab from a fanpage temporarily during development

I'm wondering how to hide a Facebook tab from a published fanpage while the tab is under development, so that it only appears for page Admins?
I know you can do this for custom built apps (the sandbox setting), but here I'm not referring to a custom built app, but prebuilt apps like Static HTML.
In order to edit tabs it seems that they have to be added to the page, in order to be able to edit them. That's a problem when customizing a Facebook tab, as you don't want your fans to see your work-in-progress content until it's ready to be published.
Any one who has experience with this?
You could show it only when an admin is logged in by checking the session.
I can't help you more because there is too few information of what you're using..

How do I test a Facebook page tab app without creating a public page for it?

I'm developing a FB page tab app, and I want to provide my client a URL for testing the app. I don't have a page specifically for this app, nor do I want to create one - the test versions of the app should remain private. What is the normal process for testing page tab apps privately in this manner?
Try this:
Go to your application: developers.facebook.com/apps
open your app, on left side there is a section called advanced (settings->advanced),
just click on that and you will find create a facebook page option,
you can create a facebook page and after creating,
you can set setting for publish or unpublish.
You have to enable the Sandbox Mode in your app settings.
If you want to give other users access to the app, you need to add them as developers or testers in the Roles settings.

Is it possible to find out the developer of a facebook app?

Is it possible? I mean an app that works inside the facebook.
Yes it is, every application which is registered in facebook contains a application page. If you click on this page, go to the Info Tab and there you will see the name of the developer.
To get to this page, scroll down while using the app. At the bottom left of the webpage you will see the name of the app. Click it and you will go there. Next, use dooonot's directions.

How do I create a Facebook application for use only on page tabs?

I'm currently creating a very basic Facebook application and I've run into a bit of a roadblock, so any help would be appreciated.
My application is as follows: I want to have the application pull records from my database that the user has added to my site off of Facebook and display them in a tab on one of their fan pages. Everything the user could add or edit will be done on my site (not on/through Facebook) so all I need to do is have my application check which page is requesting and display their records. I imagine the install will go something like this: user signs up on my site, user adds app to their page, user links their account and fan page (thinking of the best way to do this), user adds records.
The problem I'm running into is there's barely any information on the new Facebook PHP-SDK (does not use the require_login() method) and I'm not really sure how to start. Again, the only functionality I need on the Facebook end is for them to be able to add my application to their fan page and be able to distinguish between which page is requesting my app.
Does anyone have any resources for creating a basic application with the new SDK? Facebook's dev section is absolutely no help for beginners and I'm pulling my hair out despite a pretty solid grounding in backend development.
Thanks!
tab apps have some limitations comparing to regular fb apps. You can read about those here.
How to make a tab - register a facebook app, fill out "Tab Name" and "Tab URL" fields in the profiles settings (you might need to fill out "canvas" settings first).
Now all tabs will be loaded from "Tab URL" on your server. How to find out who is tab owner - check for fb_sig_profile_user request parameter in your tab page handler, which contains owner's user id.
This should get you started.