Skip to main content

All Questions

4 votes
1 answer
977 views

How to get all photos taken at a place with Facebook API

I am building a web site for an event venue. I want to use Facebook API to get the photos taken at the venue by other people. I can do a graph search on Facebook for "photos taken at place-x" and it ...
fahrio's user avatar
  • 109
0 votes
1 answer
126 views

FQL: How to get other photos belonging to the same post?

SELECT created_time, like_info, share_count, message, attachment FROM stream WHERE post_id='119757088035616_862221027122548' With this FQL-Query, i'm getting several information about one post inside ...
Simon's user avatar
  • 3
0 votes
1 answer
138 views

android: facebook query FQL tries to retrieve the photo src from photo_src table

Recently , I realized my application can't retrieve any image src from facebook using the table photo_src e.g. query Select pid From photo_src where size = '960X960'. It works fine previously and ...
LittleFunny's user avatar
  • 8,295
0 votes
0 answers
100 views

Facebook FQL: Can we pass custom width / height to query the photo_src?

I am trying to query photo from facebook using Graph API Explorer but not working This is what put in. SELECT src From photo_src where photo_id IN (SELECT pid FROM photo WHERE owner = me()) I ...
LittleFunny's user avatar
  • 8,295
0 votes
1 answer
96 views

Getting list of my friends that are tagged in a photo

Users, events and groups can all be tagged in a photo. In the available fields from photo_tag, you can't distinguish what subject id is a user, event or group. I want to just return a list of my ...
Michael Waterfall's user avatar
1 vote
1 answer
1k views

Retrieving friends photos with FQL

I am building a product which uses images from a users Facebook friends. I have found multiple examples on SO which filter the photos by filtering through albums and the users friend list like this: ...
Nippysaurus's user avatar
  • 20.3k
0 votes
1 answer
182 views

Incorrect/incomplete results from FQL

So, I need to get the most recent photos from my friends. I tried running some queries from my code as well as from the FQL explorer at http://developers.facebook.com/tools/explorer The following ...
Ram P Singh's user avatar
0 votes
1 answer
262 views

Facebook FQL stream query only returning 4 items

I am trying to retrieve all Photos from a user's stream. SELECT post_id, actor_id, target_id, message, created_time FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid = ...
sabes's user avatar
  • 335
0 votes
1 answer
408 views

FQL query to get tagged photos of specific user returning error

How to get tagged photos from particular friend? I'm now using this code SELECT pid,src,images FROM photo WHERE object_id IN (SELECT object_id FROM photo_tag WHERE subject=$uid) this is the error ...
Sasindu H's user avatar
  • 1,578
0 votes
1 answer
551 views

facebook FQL get photo full size src

SELECT pid,link,src,src_big FROM photo WHERE aid = '143587452330654_112887' I'm using this code to retrieve image src. But I want to get big image src (which one you can see under the photo - ...
Sasindu H's user avatar
  • 1,578
1 vote
0 answers
111 views

Facebook FQL Latests Photos of my friends

I want to have the list of my friends' latests photos since last week To have this solution I do this request in FQL : SELECT src_big ,owner,created FROM photo WHERE album_object_id IN (SELECT ...
user1772370's user avatar
0 votes
1 answer
477 views

Why is my FQL photo request not returning all query results?

In my canvas app I've specified that I want to recieve all photos available to me (taken by me or shared with me) which have both "friend1" and myself tagged. I have permissions for user_photos and ...
John's user avatar
  • 25
0 votes
1 answer
463 views

FQL query fails depending on user

I wrote a query, trying to all the comments, given on my albums. The query I use is the following : SELECT fromid, user_likes, text, time FROM comment WHERE object_id IN ( SELECT object_id ...
Hoogstudentengilde De Wesp's user avatar
7 votes
1 answer
14k views

Getting a High Resolution picture from Facebook API

Facebook FQL API for Photos states the maximum resolution for a photo returned from the API is 960x960: The Photo object has an equivalent src connection. Using photo_src FQL, you can retrieve ...
jbkkd's user avatar
  • 1,530
0 votes
1 answer
281 views

FQL Latest photos of all friends doesn't work

I try in FQL to have latests photos of all my friends ordered by desc in one request but I have only photos of two friends in response to this query : SELECT src_small ,owner,created FROM photo ...
user1772370's user avatar

15 30 50 per page