Alternative To The Default Friend Picker?
Solution 1:
The dialog you post is a custom solution that a lot of apps include in their apps, i don't know what and where to find this but you can build your own by calling all the friends via Graph API,
or you can use something like this: http://www.emposha.com/javascript/fcbklistselection-like-facebook-friends-selector.htmlhttp://www.emposha.com/javascript/fcbkcomplete.html
Solution 2:
I image that you are connected to the app and that the app has permission to read your friendlist to manually display such a list.
Solution 3:
That looks like an old, deprecated picker that sends the old-style requests - these are super-deprecated and will be removed soon
The only currently supported method for doing this is the Requests dialog which looks like this:
Solution 4:
You can create a custom friend selector in a few steps.
- Call the API and get a list of the user's friends
- Display the list to the user and let them select the friends they want to invite (you can use checkboxes or another method for doing this).
- Use the single / multiple request JavaScript function described here to send the requests: http://developers.facebook.com/docs/reference/dialogs/requests/#direct_request
This will let you display the friends list as you want, but still send the requests correctly using the API.
Post a Comment for "Alternative To The Default Friend Picker?"