3

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

Oren
  • 937
  • 1
  • 10
  • 34

1 Answers1

3

You can use with modifier to filter posts that contains a location attatched to them.

From Facebook:

You can retrieve only posts with a location attached by adding with=location to the URL parameters:

https://graph.facebook.com/me/home?with=location

Works for feed (Wall Posts), posts (Posts by the user himself) and home (News Feed).

ThePCWizard
  • 3,338
  • 2
  • 21
  • 32
  • Do you know by chance, if you can use the `with` modifier for other filterings too? Is there a list of possible values you can pass as `with`? Is `location` the only one? – D.R. Oct 30 '16 at 23:10