Facebook: is it possible to show only custom OWN messages

I ask the user's wall posts, and also get messages from other people who are posted there.

How to post ONLY user posts?

+4
source share
1 answer

In FQL:

SELECT post_id, message FROM stream WHERE source_id = <uid> AND actor_id = <uid> 

If both source_id and actor_id same, you will only receive user messages on your wall. (See http://developers.facebook.com/docs/reference/fql/stream )

Is this what you are trying to do? What do you still have?

+3
source

Source: https://habr.com/ru/post/1333404/


All Articles