Simple question:
I've used php-sdk to get a hold of a users picture when logging in. Like this:
$user = $facebook->getUser();
if ( $user )
{
try {
$user_profile = $facebook->api('/me'); .....
<img src="https://graph.facebook.com/<?php echo $user; ?>/picture"> ....
But I also want to get a hold of the username. I though I could do something like this, just add:
<img src="https://graph.facebook.com/<?php echo $user; ?>/username">
Of course this didn't work. I've tried many other "names" for a users name but I can't seem to find it! Someone got a simple solution? :)