0

It's simple question it's possible to posts from graph api, but only these with messages?

graph.facebook.com/name?fields=feed

This get all posts, even if there is no message in post (someone just for example uplaod a image - without description).

I would filter that, but can't find the way to to that.

You can do

name?fields=feed{id}

to get only ids, but if you replace 'id' to 'message' it does not get pure posts with messages only.

I tried also with /search?q=... and with no success.

Any options?

1 Answers1

0

There is no way to filter by posts with messages only, you would have to do that on your own after getting all posts.

andyrandy
  • 72,880
  • 8
  • 113
  • 130