facebook-page

Facebook FQL. Which is the easiest way to get all page changes in one single query ordered by date/time?

流过昼夜 提交于 2019-12-13 08:28:24
问题 I need to monitor one single page and all related activities. This is the result I'm trying to accomplish: 29/10 - User: John - Action: Like - Object type: status - Object id: 123456 29/10 - User: Mary - Action: Comment - Object type: status - Object id: 123343 29/10 - User: Etan - Action: Tagged - Object type: status - Object id: 123537 29/10 - User: Arth - Action: Like - Object type: status - Object id: 123876 29/10 - User: Jack - Action: Post - Object type: status - Object id: 123423 29/10

Facebook story mutiple photos display in newsfeed

五迷三道 提交于 2019-12-13 04:03:12
问题 I'm working on creating facebook stories for my facebook page app.My requirement is to display activity "I voted for this movie " with images as shown in image I tried posting through Graph api explorer: {"title":"cool","fb:explicitly_shared":true,"url":"http://www.facebook.com/name/app_id","description":"cool place", "image":[{'url':"http://personal.psu.edu/tao5048/JPG.jpg","user_generated":true},{'url':"http://personal.psu.edu/tao5048/JPG.jpg","user_generated":true}]} In my activity log :

How to post photo to facebook page feed - not posted by others

谁说我不能喝 提交于 2019-12-12 19:25:27
问题 I have installed facebook sdk Now i am able to post to wall like this with below code the code for posting above message FacebookClient myClient = new FacebookClient(srAcceToken); var dicParams = new Dictionary<string, object>(); dicParams["message"] = "trial message"; dicParams["caption"] = string.Empty; dicParams["description"] = string.Empty; dicParams["name"] = "deneme 123"; dicParams["req_perms"] = "publish_stream"; dicParams["scope"] = "publish_stream"; dicParams["access_token"] =

Facebook page tab iframe appears on bottom

一曲冷凌霜 提交于 2019-12-12 02:48:17
问题 It seems like there's a bug with the facebook page tabs. Lots of them are rendering content on the bottom of the page. Is there a change that developers must be aware of? 回答1: It is in fact a bug. I've just spent an hour looking into it. It appears that they have increased the width of the right pane and it has caused the content area to shrink to less than 520px. Unfortunately, the iframe that Facebook uses to display app content is hardcoded with a 520px width and you are unable to modify

Name/UID on page tab without authentication?

那年仲夏 提交于 2019-12-12 01:53:01
问题 I had previously thought there was no way to get a user's information, specifically their userid, without first getting them to authenticate your app. I see that this page, however, does that on a custom page tab: http://www.facebook.com/AutoCADWS?sk=app_4949752878 Not only does this page tab get the viewing user's name, but it also gets their profile url, which includes their userid. How do they accomplish this without authentication? If this is possible, could someone point me to example

Posting a link to a page not showing up?

我与影子孤独终老i 提交于 2019-12-12 01:20:04
问题 <?php $appId = 'XXXXX'; $pageId = 'XXXXX'; $secret = 'XXXXX'; $token = 'XXXXX'; $data = array( 'access_token' => $token, 'description' => 'test_description', 'link' => 'http://www.google.co.uk', 'message' => 'test_message', 'name' => 'test_name' ); try { require_once 'facebook/facebook.php'; $sdk = new Facebook( array( 'appId' => $appId, 'secret' => $secret, 'cookie' => true ) ); $post = $sdk->api('/'.$pageId.'/feed', 'POST', $data); print_r($post); } catch (FacebookApiException $e) { echo $e

Facebook automatically created a fan page which I can't edit

大憨熊 提交于 2019-12-12 00:18:37
问题 We launched a website which uses the Facebook open graph and like buttons to share content on Facebook etc. One of the open graph tags includes information about the Facebook IDs of the website owners ( <meta property="fb:admins" content="..."/> ), so these were included. I am one of the admins, and when I liked the web page myself Facebook automatically created a fan page. This is OK, and we are going to keep the fan page, but I can't seem to edit it. Is there any way to edit a Facebook page

Python facebook-sdk: retrieving names of users who posted a message on a page

倾然丶 夕夏残阳落幕 提交于 2019-12-11 20:23:15
问题 I want to use the Python facebook-sdk library to retrieve the names of the persons who posted a message on a Facebook page I created. This is an example, returned by the Graph API explorer: { "feed": { "data": [ { "from": { "name": "Ralph Crützen", "id": "440590514975673" }, "message": "Nog een test.", "created_time": "2015-10-17T19:33:30+0000", "id": "649463214822976_649745285127205" }, { "from": { "name": "Ralph Crützen", "id": "440590514975673" }, "message": "Testing!", "created_time":

Authenticate a user from a page tab

血红的双手。 提交于 2019-12-11 18:50:05
问题 I'm trying to make a Facebook page tab where people can vote for their favorite video or music track from a bunch of embedded files. I need to get a unique ID from each user to make sure that they can only vote once. The signed_request only contains the user's id if they have authorized my app. I have tried to have users authorize my app using the FB.login() javascript api, but I get the error: An error occurred with Remix // Rework Vote. Please try later API Error Code: 191 API Error

Is possible to use Facebook's (Page) Graph API without having an role in that page?

混江龙づ霸主 提交于 2019-12-11 13:45:44
问题 For example, let's say I need to "crawl" (not manually since it looks against Facebook's policies but via graph API) some information from a Facebook's brand page (e.g. https://www.facebook.com/nike/ ). For example I may need to collect the following fields from a set of brand pages (not just one, such as the one mentioned above, for which I could definitely do it manually), when they are publicly available: ("About tab") - description - address - website - ... I was reading Facebook's graph