1

We can usually mention our friend when we write our status message on our wall page. I want to get mentioned users' numeric id from status message. so I have had to try to find mentioned person's user_id(numeric) by using FQL but I didn't find any related field on the specification of the status table.

https://developers.facebook.com/docs/reference/fql/status

How can I get tag information about mentioned someone? is there something field to get mentioned user's numeric id from status message in another table?

4

1 に答える 1

1

この表を使用stream tagして、投稿でタグ付けされた他のユーザーを見つけることができます。

たとえば、最近タグ付けしたすべての人を取得するには、次のクエリを実行できます。

SELECT target_id, post_id FROM stream_tag WHERE actor_id=me()
于 2013-04-08T12:25:43.693 に答える