In Facebook Graph API explorer, there is a "with" modifier (along with since, filter, limit etc).
What is it used for?
Asked
Active
Viewed 2,572 times
3

Oren
- 937
- 1
- 10
- 34
-
Probably people tagged in a post? – luqui Feb 21 '13 at 09:23
-
I thought so to, but something like me/home?filter={some_filter}&with={uid} is the same as without specifying the with modifier – Oren Feb 21 '13 at 09:27
1 Answers
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