adding app to fanpage... fanpage not showing up on "Add Page Tab" - facebook-graph-api

So I followed the directions on facebook to add my app (which is a tab) to my fanpage:
"Facebook Page administrators can add your app directly to their Page by navigating to the following URL: https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&next=YOUR_URL, where YOUR_APP_ID and YOUR_URL can be found in your app settings."
And I got the the Add Page Tab page as described above but when I click on "choose facebook pages" drop-down, the fanpage I want to add the app to is not listed. I'm an admin on the fanpage... any idea of what is wrong?

Try using this form http://addtopage.muffinsdeluxe.com/
It will generate the correct link you need to add the app to your page.
Good luck :)

Related

Custom Login Setup django-microsoft-auth Django

I am using django-microsoft-auth in my Django project. I followed this guide. Now, I'm able to log in through Microsoft account(address: http://localhost:8000/admin ) but I don't know how to add a view that will say "Login using Microsoft" and how to link that view with Microsoft authentication page. It will be great if someone can tell me how to do this. You can see this picture. Here Microsoft button is automatically added for login. How to set up a button like this on the home page?

What is the simplest way to create a page tab on the latest version of fb?

All I want to do is create a few pages with sign up forms for our fans and customers on our business facebook page.
I created the new app, named it and went on to the basic settings. From what I can tell I just need to set up the "page tab" info. I Named the tab, put in the page tab url, secure page tab url and uploaded a tab image.
Then I wait for it to show up on our fb page. I refresh the page and for a few seconds it looks like something is being loaded in the list of tabs. But then it stops and the layout of default tabs (photos, likes, and events) are unchanged.
The tab should link to the app url which should load inside of an iframe which will have the html from our web server.
That's how I understand it anyways.
You must add manually the application on your page through this URL: http://www.facebook.com/dialog/pagetab?app_id=APP_ID&redirect_uri=https://www.facebook.com/
Remember to replace APP_ID first.

Facebook Page a Mandatory Step for Entry Submission

I want to make my facebook page like mandatory for submission same as below article but I am not getting where
"Promotion Builder under Application > Integration > Facebook Like Box" is located.
http://support.strutta.com/kb/facebook-integration/how-to-make-liking-my-facebook-page-a-mandatory-step-for-entry-submission
I will find it in Facebook apps settings or page where apps are shown?
Any solution?
Thanks
The setting you are referring to is part of Strutta's web app, not Facebook. Assuming you have an Strutta PRO account, you must login to your account to activate the setting:
http://www.strutta.com/auth/login?destination=account

How to access admin page - website like button

I am in the process of adding Like buttons to all of the product pages on a website. I am using all of the proper open graph tags and an app_id and everything seems to be working fine. I will be using a version of the button that does not give you the Admin or Insights links to choose from. I am wondering if there is an easy way to access those pages without the links?
Even though I am listed as an admin of the App, I am not automatically listed as an admin of each of the product pages as they are created. The only way I have been able to do it is to:
Add the default Like button code to another area of the page.
Click on the admin link then add myself as a page admin.
Delete the extra button on the page.
Access the admin area by going to facebook/pages.
This will be a pain as I add in hundreds of products! Any advice would be appreciated.
I'm facing the same issue. Sadly your way of being admin of a page via an extra button didn't work for me.
I've found this related bug in facebook developers website : http://developers.facebook.com/bugs/160664854023586?browse=search_4e946433c82379f78564182

Add a custom application tab to user's pages

I am initially asking a
manage_pages
permission whenever a user is authorizing my app. I would now like to add a custom tab i.e. the user can change the name of the tab which gets added to his facebook page. How can i achieve this?
Thanks Mirko... I checked the documentation and found that we can use graph api to make tabs as
$facebook->api("/PAGE_ID/tabs","post", array("access_token" => $accessToken, "app_id" => $appId));
though i was actually passing the 'user access token' in the above code instead of 'page access token as suggested by Lix in the other reply.
Fonally i found out that the page access token can be obtained by
$pageIds=$facebook->api('/me/accounts');
$pageAccessToken=$pageIds["data"][1]["access_token"];
$facebook->api("/PAGE_ID/tabs","post", array("access_token" => $pageAccessToken, "app_id" => $appId));
Facebook recently added the ability to programmatically (via the Graph API) create and modify tabs. Take a look at the tabs section of the Page docs:
http://developers.facebook.com/docs/reference/api/page/#tabs
if you goto the page settings ( top right corner of page - "edit page" button), and then navigate to the "apps" tab - you can change the name of the tab that was added by clicking on "edit settings" next to its name.