CodeIgniter Forums
facebook showing friends in view - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: facebook showing friends in view (/showthread.php?tid=32400)



facebook showing friends in view - El Forum - 07-22-2010

[eluser]vishok[/eluser]
Is possible using helliot haughin connect library show in view the friends of the connected facebook account?
thanks


facebook showing friends in view - El Forum - 08-26-2010

[eluser]Gram3000[/eluser]
Yes it is. When you have implemented the library into your CodeIgniter application, use the following to get an array of your friends user IDs in the home.php controller:

$friends = $this->facebook_connect->client->friends_get($data['user_id']);

This will return an array of IDs. Then use users.getInfo I believe to return information on each user, though I haven't used this yet.