Questions tagged [facebook-page]

Facebook Pages are representing real world entities like organizations, businesses, celebrities, and bands to broadcast great information in an official, public manner to people who choose to connect with them. Pages can be enhanced with applications that help the entity communicate and engage with their audiences, and capture new audiences.

Facebook Pages are representing real world entities organizations, businesses, celebrities, and bands to broadcast great information in an official, public manner to people who choose to connect with them.

Similar to profiles (timelines), Pages can be enhanced with applications that help the entity communicate and engage with their audiences, and capture new audiences virtually through friend recommendations, News Feed stories, Facebook events, and beyond.

1052 questions
7
votes
5 answers

Facebook API: Determine if Facebook Page is published / unpublished

What is a reliable way to check whether a Facebook Page is published or unpublished using the graph API? I currently do this: http://graph.facebook.com/{page_id} and check if the return value is "false". If it's false, I conclude that it's…
Johnny Oshika
  • 54,741
  • 40
  • 181
  • 275
7
votes
1 answer

Check if page tab app is still installed

What is the best way to check if a tab app is still installed on a specific Fan Page, using the graph api? The only way I can come up with is using, https://graph.facebook.com/page_id/tabs/app_id, and this will return the data for the given tab,…
Jackson
  • 455
  • 1
  • 5
  • 10
7
votes
2 answers

Facebook test accounts with pages

I'm creating a system which involves these steps: 1. Facebook user logs in with Facebook login (manage_pages scope) 2. One of user's Facebook page's access_token is being collected 3. Page's access token is then extended and stored in database for…
rokastokas
  • 77
  • 1
  • 5
7
votes
2 answers

Is it possible to LIKE a Facebook Page via the API?

Is it possible to LIKE a Facebook Page via the Open Graph API? Maybe POST to "http://graph.facebook.com/#{FB_PAGE_ID}/likes ??? This is the only thing I could find in the API about creating a LIKE: /POST_ID/likes like the given post none
tdewell
  • 353
  • 1
  • 5
  • 13
6
votes
3 answers

Facebook API: I want to silently (without dialog box) authenticate my server to access a fan page's info

The organization I'm creating a website for has a facebook fan page and I would like to feed the events tab on the website directly from the events that the fan page has created or is attending. The problem is I can't see, looking at the oauth…
Dan
  • 3,246
  • 1
  • 32
  • 52
6
votes
1 answer

Add external link to Facebook page tab list

So here's an image of what my Facebook fan page sidebar currently looks like: Underneath the Tumblr tab, I'd like to add a link that says "My Blog" and when users click on it they're brought to my website. I do NOT want it to open a new tab on my…
Mike
  • 131
  • 1
  • 2
  • 11
6
votes
2 answers

how to use facebook comments plugin into facebook page

We have a Face book page.We add a custom FBML tab.Now we want to add Comment Face book plugin.I tried to add an script what i got from Face book Social Plug in.The code is
PrateekSaluja
  • 14,680
  • 16
  • 54
  • 74
6
votes
2 answers

Cannot create Page with test users

I created some test users for a test app on my Facebook developer account. I would like these test users to be able to create Facebook Pages. When I try to do that, I get the following error message: This content is no longer available The content…
Sammy
  • 79
  • 1
  • 3
6
votes
1 answer

Can I use facepile with a Facebook Page?

So I have a Facebook page setup. And I have an external website that I would like to use facepile on. The idea being that when somebody comes to my external website, they can see which of their Facebook friends has 'liked' the Facebook page. I went…
Mark Lakewood
  • 1,980
  • 4
  • 22
  • 44
6
votes
2 answers

Facebook - How to get Page ID?

I need get the Page ID of my page in Facebook, but I'm having troubles when I try to do this. My page on Facebook is: https://www.facebook.com/techsempre I'm trying to get the Page ID with Graph, as suggested by a lot of articles in Internet, but…
Paladini
  • 4,522
  • 15
  • 53
  • 96
6
votes
1 answer

Displaying a fan page in a UIWebView with an authenticated user session using Facebook's access token

We're developing an app for iOS and Android that has a rather odd requirement. One of the tabs of the app opens up the client's Facebook page. So here's our desired functionality: The user logs in using Facebook's SDKs (for iPhone and Android) We…
6
votes
1 answer

How to get page fans distribution by country?

I am trying to get the number of likes by country for a given page that I do not own (public datas). Just something like that : http://www.socialbakers.com/facebook-pages/40796308305-coca-cola But I am not able to get this information with the Graph…
6
votes
3 answers

Assign admin role for facebook page over FaceBookGraph API

I have facebook page and I am admin of that page. Now I want to assign admin role to some one from my friend list using Graph API. In docs i found how i can list admins of one pege ussing accounts parametar, but i can't found how i can add some one…
6
votes
1 answer

How to get like count for a specific country?

Per this blog post, country-level stats are now provided via the Insights connection on pages. Unfortunately, those country-level stats only provide data for the top 45 countries. Is there a way to get stats for a specific country? As an example,…
5
votes
1 answer

FB.ui({ method : "oauth" }) vs FB.login() within a Page Tab Application

We currently use the OAuth dialog via the JavaScript SDK within our page tab application to request permissions, instead of FB.login. The reason for this is that FB.login() launches a new window, whereas FB.ui({ method : 'oauth' }) displays a nice…
1 2
3
70 71