Fetch friend list
LightBulb.friendlists.getFriendList({user:"me"}, function(response) { console.log(response); $("#result").html("<h2>Result</h2>") for(i in response){ $("#result").append("<b>"+i+":</b> "+response[i]+"<br/>"); } })