如何使用Graph api在facebook中找出最大数量的喜欢和评论

I want to retrieve the profile ids from my friends list those who comment and like most of the stuff I put on my wall.

So far I have retrieved a list of 30 friends who share the maximum mutual friends with me.

Now I need to sort these 30 again based on comments+likes.

I use php.

EDIT:

Any specific answers with Code sample is greatly appreciated

Hi First you need to query the Linktable using FQL. This will return you whole objects that you has posted. Then you just need to again query to Like table. It will return you user id's who likes that page. Then you can compare those user id's with your user id's. i hope it will work ;-)