I am querying the stream table to retrieve everything that the logged in user has posted recently. I am using the following query:
SELECT source_id, actor_id, app_id, post_id, created_time, message, likes, attachment FROM stream WHERE source_id = XXXXX AND actor_id = XXXXX
The problem is that the response includes entries for when other users have tagged the logged in user in photos, which I don't consider to be a post from the logged in user him/herself.
I have looked at other fields in the stream table such as taget_id and viewer_id but cannot find a way to limit the results.
Can anyone help me to excludes these tag posts or identify in the returned data which entries are tagged photos (or other things that can be tagged)?
Thank you in advance.
// Peter