Andy
Andy

Reputation: 115

Facebook Graph API to search user statuses

I am trying to pull some of my facebook statuses that contain a particular keyword and show them on a web page, what is the url query string I should use?

The best I can came up with is graph.facebook.com/me/statuses

But it returns all the statuses, but i want statuses that contain a particular keyword, such in a search, how should I do it? Or is it even possible?

Upvotes: 0

Views: 220

Answers (1)

Jim Rubenstein
Jim Rubenstein

Reputation: 6920

You'll have to manually go through the statuses returned from /me/statuses to find the ones that you care about. Facebook doesn't really let you use their computing power to search stuff like that.

Upvotes: 1

Related Questions