facebook-fql

How to check if someone is liked my fanpage from my website?

微笑、不失礼 提交于 2020-04-16 04:24:51
问题 I want to check if a user liked my fan-page from my website and if he did i skip the step and if he didnt i want to suggest him to like my fan-page,its all on my website i dont want to put a landing page or something else on my fan-page.all of it is on my website,i don't want to put a landing page or anything else on my fan-page. Thanks 回答1: there are only 2 ways for this: -) use the edge.create event: https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/ downside:

Android facebook api get friend's life events

时光怂恿深爱的人放手 提交于 2020-03-06 07:10:27
问题 I can see friends life event's in facebook app, but i can't retrieve it from my app through /me/feed or /me/home or by FQL: SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND is_hidden = 0 Is there any way(FQL or Graph API) to get friend's life events in my app? 回答1: Friend permissions are deprecated, you cannot get any details of your friends anymore. See the changelog for more information

Android facebook api get friend's life events

徘徊边缘 提交于 2020-03-06 07:09:21
问题 I can see friends life event's in facebook app, but i can't retrieve it from my app through /me/feed or /me/home or by FQL: SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND is_hidden = 0 Is there any way(FQL or Graph API) to get friend's life events in my app? 回答1: Friend permissions are deprecated, you cannot get any details of your friends anymore. See the changelog for more information

Facebook post impressions are null in FQL stream query

…衆ロ難τιáo~ 提交于 2020-01-31 10:39:20
问题 According to the FQL Stream documentation the following query is supposed to return impression counts when run by an authenticated page owner, yet it never does. We have the page owner authenticating directly in the graph api explorer with extended permissions (read_stream, read_insights), but the impression counts are always null. Is anyone able to get this working? SELECT post_id, actor_id, message, impressions FROM stream WHERE actor_id = {owned_page} and source_id = {owned_page} 回答1: I

Facebook post impressions are null in FQL stream query

萝らか妹 提交于 2020-01-31 10:38:22
问题 According to the FQL Stream documentation the following query is supposed to return impression counts when run by an authenticated page owner, yet it never does. We have the page owner authenticating directly in the graph api explorer with extended permissions (read_stream, read_insights), but the impression counts are always null. Is anyone able to get this working? SELECT post_id, actor_id, message, impressions FROM stream WHERE actor_id = {owned_page} and source_id = {owned_page} 回答1: I

Conflicting limits about maximum number of calls to Facebook API?

断了今生、忘了曾经 提交于 2020-01-25 11:01:10
问题 On https://developers.facebook.com/policy/#features they say an app has an upper limit of 100M calls per day. However, the error code: 613 - FQL_EC_RATE_LIMIT_EXCEEDED - Calls to stream have exceeded the rate of 100 calls per 600 seconds specifies that you can averagely perform up to 1 call per 6 seconds. Those two limits conflicts. The FQL is supposed to be part of the API, right? If not, then you can perform up to 100000000 calls per day to the API but only up to 14400 FQL queries. But if

Get FQL real time updates

穿精又带淫゛_ 提交于 2020-01-25 04:40:05
问题 I am using FQL to query . I want to repeat the query every 15 mins and see if any change occurs. So ideally i want to do a FQL query, wait 15 mins do same query again etc... Is there any way i can use Push notifications to do it? I read about real time facebook api, but I am not sure it can be implemented with FQL.. Thanks! 回答1: No, the Real-time Updates are only for graph objects, and according to the documentation only for the User, Permissions and Page objects (and then not to all fields

<fb:comments-count> not working on my WordPress powered blog

可紊 提交于 2020-01-23 03:40:06
问题 I am using the Facebook comments plugin on WordPress and the comments box is working fine but I want to access the number of counts on the index page and on single pages. On the pages, the Facebook Javascript is loaded on the pages. Here's the code I used: <fb:comments-count href=<?php echo get_permalink() ?>/></fb:comments-count> comments But it doesn't count the FB comments. Is there a simple code that let me retrieve the number of comment counts? Thanks, 回答1: Include this function

FQL profile.pic_square and thread.subject

半世苍凉 提交于 2020-01-23 02:41:50
问题 is it possible to get a join of two tables in the Facebook API, with FQL? The classic way with SQL style don´t work. Hope you can help :) PS: WINNING :) 回答1: As Documentation Says Facebook Query Language, or FQL, enables you to use a SQL-style interface to query the data exposed by the Graph API. It provides for some advanced features not available in the Graph API, including batching multiple queries into a single call. You can execute FQL queries by fetching https://api.facebook.com/method