Get user details

Fetch user details

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