How do I select friend ids using the facebook api?

97 views Asked by At

Whenever I call FB.ApiRequest() to send invites it brings up a native facebook menu to quickly select friends.

Is there any similar call which would allow me to select friend's user ids in a similar manner/interface like above.

I want to do this so that a user can monitor only selected friend's scores in an app.

This is my first time playing around with the facebook api, and I couldn't find much info about this in fb's documentation.

1

There are 1 answers

2
andyrandy On BEST ANSWER

You just need to call /me/friends after authorizing with the user_friends permission and develop your own selector. Keep in mind that you can only get friends who authorized the App too.