Instagram API:如何在热门Feed中查看用户

I have this code and as you can see I can see how much likes every photo has, but i want to know username of person who uploaded every photo. What should I write ?

            var str = '<p>likes: '+ photo.likes.count +'</p><img id="' + photo.id + '" src="' + photo.images.standard_resolution.url + '" width="50">';
            $('<div></div>').addClass('photo').html(str).appendTo('#p' + photo.id);

            $('#' + photo.id).load(function() {
                $('#p' + $(this).attr('id')).fadeTo('slow', 1.0);
            });

        }
    }else{
        alert('empty');
    }

}else{
    alert(data.meta.error_message);
}

The data json object is described on the site:http://instagram.com/developer/endpoints/media/ This is what you need to use

data.user.username