Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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? :)

share|improve this question

2 Answers

Even if you are getting the username which you will not using like that, you should not be putting within an img tag..

Use the graph explorer for any kind of information on what are the possible results.

For the username get the response of 'me' and find the value of 'username'. See below for all kind of exploring on the Graph API..

https://developers.facebook.com/tools/explorer?method=GET&path=me

share|improve this answer
Okay :) thank you, I just though since you could do it within img source in javascript: image.src = 'graph.facebook.com/'; + user.id + '/picture'; I could also do it in the php-sdk. But thank you for your answer :) – Håvar Bjørnseth Jan 10 '12 at 6:16
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 21:00

This will work without an access token:

http://graph.facebook.com/{user_id}?fields=username

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 21:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.