add vimeo tab to facebook (company) page - facebook

I recently authored a company page on facebook. The company page is for a design firm and they have a bunch of videos on Vimeo.
Can someone please guide me on how to add a separate tab on the left side for vimeo and have facebook poll in my videos/activity from vimeo ?
I'm doing this for the first time, so any help would be great.

You'll need to build a custom tab (you just create an app on Facebook, put a URL of your site in the Tab URL field, install the app to your Page, and the tab will just iframe the URL you specified) or find a tab that does what you want on a site such as Appbistro. If you can't find what you're looking for and don't have the technical resources to build it yourself, you may want to contact one of our Preferred Developer Consultants who can help you build what you're looking for.

Related

How to add an app to Facebook business page (favorites)

I'm trying to add my Facebook app (iframe integration) to a Facebook business page. But can't figure out the rifht way to do it, because Business accounts can use apps. Looked through all Facebook Docs&Help and found nothing. (
Will be grateful for any clue.
Thanks
You just need to configure the Pages Tab options (last one on the Apps Basic Settings page). Check out https://developers.facebook.com/docs/appsonfacebook/pagetabs/ for instructions. Let me know if that was what you're looking for :)

One Facebook app multiple users

I'm thinking of a facebook app that fetches a website's content (already developed with my own web builder) and display in a custom facebook fan page format. Clients already using the Web builder will only have to add the App to their fan page and they have their website's content already plugged into facebook.
The problem I'm having is knowing how exactly to automate this process. I can't seem to find the "Add app to page" menu when you click the Gear Icon, and the link below gives an approach I can't be explaining to every client (video further down in the link)
http://onlinewealthpartner.com/add-facebook-application-fan-page/
My head might swirling from everything I've read so far, but I'm just easing into the facebook app development. Help/insight would be much appreciated.
If I understand, your central problem is to make it as user-friendly as possible for your users to add your app to their fan pages?
Bottom line is they would need to visit the link mentioned in your tutorial:
https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&display=popup&next=YOUR_URL
However, since you're the one creating the Facebook Tab Application, then you would already have and could supply to your users the "app_id" and "next" parameters, so all they would need to do is click on the custom link you provide. You could even give them a button in your web builder. Your users would just click a button, go to this link, and pick their fan page in a drop down menu.

How to get App ID for an existing facebook page?

I have the following case:
My client already has a facebook page with timeline and a decent amount of likes.
My job is to integrate facebook comments and facebook like to their website. For this I need an App ID, which I can easily get by creating a new app on developers.facebook.com
What I want is to somehow connect this app to the client's page so;
it shows up on their insights report
maybe likes and interactions get connected to the client's page instead of an app
I have already spent many hours trying to get this to work, but I don't yet see a way.
I can imagine that when I create a new App and then add a page to that app I have them connected. Though my client's company isn't an "app", it's a real-world business. Also, this way my clients loses all their likes on their current page.
Please help me figuring out the right way to do this.
Thanks in advance.
If you have a Pretty URL, you can go to http://graph.facebook.com/{yourpagename}. The App ID of the page will be right there at the top. If you do NOT have a Pretty URL for the page, the App ID of the page is the number at the very end of its URL.
There's no way to link an existing app and page (by 'link' i mean mark the page as being the page which represents that app) - you can of course install an app on to your page as a tab, or use an app to manage the page and post updates, etc, the documentation for both of which is on the main developer site
Login to your page >> Click on Settings > Click on Apps from left panel > Select your page app >> Go to the bottom
Here you can find User ID

publish a small webpage on a facebook page

My company has developed two pages that we would like to publish on a clients facebookpage. These pages are hosted at my company, and are basic webpages but with a width of 520 pixels with facebook in mind.
I have created two apps in the facebook developer section, and I have filled in my url there and set it to publish as a page tab. I also set the namespace to a unique name and uploaded an icon.
when I'm looking at the app, I can't find a button like publish it on a profile page, and when I'm looking at client's facebook page (where I have been made an admin of), I can go to the apps but not browse to a custom made one to link mine to the facebook page
Try using this link to add the tab to your (client's) page:
http://www.facebook.com/dialog/pagetab?app_id=YOURAPPID&next=YOURDOMAIN
The Facebook documentation can be found here: http://developers.facebook.com/docs/appsonfacebook/pagetabs/

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.