문제

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?

도움이 되었습니까?

해결책

You can use the stream tag table to find others tagged in your posts.

For instance, to get everyone you've recently tagged, you could query:

SELECT target_id, post_id FROM stream_tag WHERE actor_id=me()
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top