facebook-fql

List of people who shared on facebook

落爺英雄遲暮 提交于 2019-11-26 15:35:56
问题 I've been scouring the docs for a while now and can't seem to find a way to accomplish this. The information is available publicly (on a facebook page ... the link says "View all # shares") but I can't seem to find a way to access this info either via FQL or the graph API. I know I can get a list of likes for a given post: https://graph.facebook.com/87236249496_134765166623967/likes The goal is to get a list of people who've shared -- but there doesn't seem to be the same sort of thing for

Current Month Facebook Friends Birthdays in Android

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-26 15:33:11
I am writing an app in which i am fetching list of Facebook Friends using Hackbook Sample Code but now i want to fetch list of Facebook Friends those birthdays in Current Month , to get list of all Friends i am using this code: public static void requestFriends(FacebookRequest facebookRequest) { Log.d(LOG_TAG, "requestFriends(" + ")"); String query = "select name, birthday, uid, pic_square from user where uid in (select uid2 from friend where uid1=me()) order by birthday_date"; Bundle params = new Bundle(); params.putString("method", "fql.query"); params.putString("query", query);

What's the Facebook's Graph API call limit?

馋奶兔 提交于 2019-11-26 11:43:06
Is there any restriction in number of calls we make to facebook's graph api? and If it is there then how many calls can we make per app daily? Zain Khan The best answer to this question from another forum , from Ash Rust in 2010: "After some testing and discussion with the Facebook platform team, there is no official limit I'm aware of or can find in the documentation. However, I've found 600 calls per 600 seconds, per token & per IP to be about where they stop you. I've also seen some application based rate limiting but don't have any numbers. As a general rule, one call per second should not

Facebook FQL stream limit?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-26 10:32:05
问题 I want to get the full history of my wall. But I seem to hit a limit somewhere back in June. I do multiple calls like this: SELECT created_time,message FROM stream WHERE source_id=MY_USER_ID LIMIT 50 SELECT created_time,message FROM stream WHERE source_id=MY_USER_ID LIMIT 51,100 and so on... But I always end up on the same last (first) post on my wall. Through facebook.com I can go back much longer so Facebook obviously have the data. Why am I not getting older posts? Is there another way to

Handling big user IDs returned by FQL in PHP

二次信任 提交于 2019-11-26 09:50:43
问题 I\'m using FQL to retrieve a list of users from Facebook. For consistency I get the result as JSON. This causes a problem - since the returned JSON encodes the user IDs as numbers, json_decode() converts these numbers to floating point values, because some are too big to fit in an int; of course, I need these IDs as strings. Since json_decode() does its own thing without accepting any behavior flags, I\'m at a loss. Any suggestions on how to resolve this? 回答1: json_decode() can convert large

Retrieve Facebook Fan Names

孤人 提交于 2019-11-26 09:00:45
问题 I\'m trying to grab the names of fans of a Facebook fan page that I administer. I\'ve done some snooping around, and apparently, the FB API doesn\'t support that, but Facebook actually uses AJAX/JSON to populate the list. Anyways, can anyone suggest a way to make that call myself and grab the data as plain text? Also, I\'ve found a hack that a guy wrote in Ruby, but I am completely unfamiliar with the language. Thanks for the help in advance! 回答1: At the current time the FQL schema would

Facebook API - How to get user's address, phone #?

点点圈 提交于 2019-11-26 08:28:09
问题 Is anyone able to get facebook user\'s address, phone # using FQL or Graph api? Have tried the following FQL and was able to get \'Current City\' and \'Hometown\' which are under \'Basic information\' but not the \'Address\' or \'Phone\' which are under \'Contact Information\'. SELECT name,first_name,last_name,birthday_date,current_location,hometown_location,pic,profile_url,timezone,username,profile_update_time FROM user WHERE uid IN (xxxx) 回答1: These attributes are specifically and

Getting the Facebook like/share count for a given URL

隐身守侯 提交于 2019-11-26 07:55:40
问题 I\'m using the Facebook API to get the like/share count for given URLs. The strange thing is that it seems to be quite inconsistent in returning results. For example, this page returns results: https://api.facebook.com/method/fql.query?query=select%20total_count,like_count,comment_count,share_count,click_count%20from%20link_stat%20where%20url=\'http://www.groupon.com/deals/seattlehelitourscom-by-classic-helicopter-corp\'&format=json Whereas, this one does not: https://api.facebook.com/method

Current Month Facebook Friends Birthdays in Android

我们两清 提交于 2019-11-26 04:28:38
问题 I am writing an app in which i am fetching list of Facebook Friends using Hackbook Sample Code but now i want to fetch list of Facebook Friends those birthdays in Current Month , to get list of all Friends i am using this code: public static void requestFriends(FacebookRequest facebookRequest) { Log.d(LOG_TAG, \"requestFriends(\" + \")\"); String query = \"select name, birthday, uid, pic_square from user where uid in (select uid2 from friend where uid1=me()) order by birthday_date\"; Bundle

What's the Facebook's Graph API call limit?

此生再无相见时 提交于 2019-11-26 02:32:14
问题 Is there any restriction in number of calls we make to facebook\'s graph api? and If it is there then how many calls can we make per app daily? 回答1: The best answer to this question from another forum, from Ash Rust in 2010: "After some testing and discussion with the Facebook platform team, there is no official limit I'm aware of or can find in the documentation. However, I've found 600 calls per 600 seconds, per token & per IP to be about where they stop you. I've also seen some application