We've never had a "Friends" import option. With updates lately on Facebook's end, getting a list of the user's friend is even more difficult and you can only fetch a list of friends of users *that have also authenticated with your application*. You can't get a list of all friends of the user.1. in jfb 6.1 i don't have friends list option in cb fields mapping
We don't have an easy way to fetch the user_likes of a user, though it can be done using some API if you want to implement it. Please note that the Likes will only be of the Facebook Pages the user has Like'd, not all content on the web that they have liked.2. as described here developers.facebook.com/docs/fa … er_friends it's possible take also user_likes - Access to the list of things a person likes. how?
// 'friend_count' => 'User - Friend Count','friends.summary.total_count' => 'User - Friend Count',foreach ($fields as $field)
{
if (strpos($field, "location") !== false)
$perms[] = "user_location";foreach ($fields as $field)
{
if (strpos($field, "friends") !== false)
$perms[] = "user_friends";
if (strpos($field, "location") !== false)
$perms[] = "user_location";Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
