Questions tagged [facebook-field-expansion]

11 questions
10
votes
3 answers

Do Facebook Graph API calls using field expansion count differently against the rate limits than batch calls

I am looking to optimize my Facebook app. Today I make a batch call with four graph API calls: /me /me/friends /me/likes /me/feed If I change this to a single graph API call using field expansion like…
Rich Sutton
  • 10,004
  • 1
  • 17
  • 21
5
votes
2 answers

Facebook Graph API field expansion in Android app

Is field expansion supported in Facebook's Android SDK? where can I find an example? There is great documentation on field expansion for the Graph APi. However, I cannot find any documentation for the android-sdk-3. Is it supported? The problem…
3
votes
1 answer

Graph api explorer - what is the "with" modifier

In Facebook Graph API explorer, there is a "with" modifier (along with since, filter, limit etc). What is it used for?
1
vote
0 answers

Unable to get some Facebook Ad API fields

I am trying to get the Video fields, but API is not returning the columns even API requesting in fields. Fields I'm trying to get are: video_p25_watched_actions,video_p50_watched_actions,video_p75_watched_actions,video_p100_watched_actions. My API…
1
vote
1 answer

How to get unread messages using Graph API?

I am developing an app that gets Facebook unread inbox message . The following v2.0 FQL query works fine: SELECT sender, body FROM unified_message WHERE thread_id IN (SELECT thread_id FROM unified_thread WHERE folder = 'inbox' AND…
0
votes
1 answer

Facebook Graph API - Get photos by User Tag

I'm trying to use Facebook's Graph API v2.3 field expansion to get the photo's of a specific friend from their albums. I only want a list of all UserA's photos from UserA's albums which have UserB tagged in. The following returns all of UserA's…
0
votes
1 answer

How can I use field expansion to expand one or two fields, while still getting all default fields for an object?

On Facebook's platform, using the Graph API, how can I request default fields + one or two field expanded fields, without having to explicitly request each default field? As far as I can tell, as soon as you field expand a single field, it overrides…
0
votes
1 answer

Facebook: field expansion in batch requests?

Is it possible to make a batch request with one (or more) of the batched requests using field expansion? For instance, say I'd like information about me, my listen data. These are the three batch requests I wrap up: {'method': 'GET', 'relative_url':…
0
votes
1 answer

How can I use cursors to paginate field-expanded queries?

I can do this: //comments?filter=stream&limit=100&after= But this doesn't work: /?fields=comments.filter(stream).limit(100).after() Am I missing something in the syntax? Though cursor-based paging and field…
Galen
  • 636
  • 6
  • 12
0
votes
2 answers

Facebook: How to get list of last friends checkins using graph API or FQL

The following Graph API gets the first checkin for each friend. How do you get the last checkin? me/friends?fields=checkins.limit(1).fields(from,message,place.fields(id,name,location,likes,website,phone,description,checkins),tags) Note that I can…
0
votes
1 answer

Get all user details from facebook event with field expansion

I want to get all the user details from an event using the field expansion. In pseudo code i think it should be something like this. GET https://graph.facebook.com//attending.user(name,id,picture) I can't get this to work (testing this in the graph…
Jens Roels
  • 43
  • 1
  • 4