facebook-page

Get facebook page rate and reviews using Graph api

倾然丶 夕夏残阳落幕 提交于 2019-12-03 12:55:55
问题 I am creating website to search places using graph API. I got the places details from graph API. Is there any way to get the page rating and reviews of the places via graph API? 回答1: I had the same problem and I answered my own question here: you need to call {page-id}/ratings?field=open_graph_story , but you need the access token of your page for that (use /me/accounts in the Graph API Explorer to get the token). You find further information in the facebook documentation. 回答2: This is an old

Post status update to Facebook page (Fan site)

不问归期 提交于 2019-12-03 08:56:35
I've seen all the posts here on stackoverflow about posting status updates to a page's wall (not a user's wall); but all appear to be out of date as none of them address the issue with the new Open Stream API. All the research I've done on Google leads me to the same end: Out of date tutorials that end up saying that the current implementation isn't perfect but "hopefully when the Open Stream API is released, it'll be better." Well, Open Stream is here. Any ideas how to leverage it and post a simple status update to a Fan site page? Andreas Klinger Open Stream API's official release was two

Facebook Page Post Api?

一世执手 提交于 2019-12-03 05:12:01
I'm administrator of a page on facebook account. How do I post this page to api ? And I, how the code will get a access_token ? Follow this steps to make: Take manage_pages permissions Get Page Access_token from https://graph.facebook.com/me/accounts?access_token=<ACCESS_TOKEN> Post your message on page using: https://graph.facebook.com/<Page_ID>/feed?access_token=<PAGE_ACCESS_TOKEN_TAKEN_FROM_STEP2>&message=uuuuhhhuuu... Open your page and check that... :) 来源: https://stackoverflow.com/questions/5635733/facebook-page-post-api

Get facebook page rate and reviews using Graph api

喜欢而已 提交于 2019-12-03 03:57:36
I am creating website to search places using graph API. I got the places details from graph API. Is there any way to get the page rating and reviews of the places via graph API? Sascha I had the same problem and I answered my own question here : you need to call {page-id}/ratings?field=open_graph_story , but you need the access token of your page for that (use /me/accounts in the Graph API Explorer to get the token). You find further information in the facebook documentation . This is an old post, but I wanted to give some extra info to others that might be looking for a solution to this

facebook redirect app from canvas page to fan page

眉间皱痕 提交于 2019-12-02 17:18:25
im building facebook app as a iframe app in fan page. My problem at the moment is next: i added facebook request dialog (http://developers.facebook.com/docs/reference/dialogs/requests), and everything goes well except for one thing: when a user gets notification, the links goes to canvas page, not to fan page (where i would like to go...) Since i cant convince facebook to add some funcionality (that would be great), im looking for a way to automaticly redirect from app canvas page to fan page, where this app is added as iframe tab. I hope somebody understands what i want to do... :) thanks,

Facebook Page Plugin is not working - only for one site

喜欢而已 提交于 2019-12-02 14:40:22
I have integrated the page plugin in my directory. ruhrlink.de info.php?schluessel=150991 dont work, others do. When I enter the web adress manually in the developers site -> Page plugin it dont works there, too. https://www.facebook.com/Geschirr-Service-Ch-Dittrich-607545982758149/ What is so special with this adress? The page has some sort of access restriction set. The page plugin only works for public pages without any restrictions. https://developers.facebook.com/docs/plugins/page-plugin#privacy : Privacy Restricted Pages Facebook Pages with privacy restrictions cannot be embedded. 来源:

How to star a post on a facebook fanpage using graph api?

强颜欢笑 提交于 2019-12-02 06:31:49
I'm posting on my fanpage but i want to do highlight posts. Any suggestions? I have to star them one by one on the fanpage. Is there any way to do this? I also read the documentation but there is no examples. http://developers.facebook.com/docs/reference/api/page/#posts Sample of code: $args = array( 'access_token' => $page_info['access_token'], 'message' => 'MY MESSAGE' ); $post_id = $facebook->api("/MY PAGE ID/feed","post",$args); Im using PHP SDK 3.1.x. joost Use: POST /<post_id>/ with param timeline_visibility = starred timeline_visibility must be one of the following values: hidden ,

How to capture JavaScript events on a Facebook page's iframe tabs

岁酱吖の 提交于 2019-12-02 06:21:09
问题 I am planning to create some dynamic content in a Facebook tab for my fan page. It should have content displayed if the visitor is not a fan, and then upon them clicking the Like button, changing the content to display hidden carrots (metaphorically). Is it possible to capture the event of the click on the Like button from inside the iframe? 回答1: On a Facebook fan page, when the user clicks the Like button, the whole page gets reloaded and Facebook sends an HTTP post to your website with a

How to capture JavaScript events on a Facebook page's iframe tabs

南笙酒味 提交于 2019-12-02 01:52:59
I am planning to create some dynamic content in a Facebook tab for my fan page. It should have content displayed if the visitor is not a fan, and then upon them clicking the Like button, changing the content to display hidden carrots (metaphorically). Is it possible to capture the event of the click on the Like button from inside the iframe? On a Facebook fan page, when the user clicks the Like button, the whole page gets reloaded and Facebook sends an HTTP post to your website with a parameter called signed_request that you would need to decode and look at with server code, not javascript.

how to hide page post using facebook api

≡放荡痞女 提交于 2019-12-01 23:59:16
I have this code and It's from this link https://developers.facebook.com/docs/reference/api/page/ (Please see 'Hiding a Page Post') I don't have any error but my problem is, this code is not working. the page post is still not hidind Below is my code: $fanpage_credit = array( 'access_token' => $page_token, 'is_hidden' => true ); $fanpage_post_url = '/'.$post_id; $postResult = $facebook->api($fanpage_post_url, 'post', $fanpage_credit ); echo 'HIDE SUCCESS '.time(); I look forward for answers. thanks! You can hide the post after you have posted it: $fanpage_credit = array( 'access_token' =>