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.

I am trying to write a small application to learn about developing for Facebook and I was trying one basic command, to say (Welcome, user_name).

I used:

 Welcome, <fb:name uid='<?php echo $user; ?>' useyou='false' possessive='true' />!

but it did not work, do you know what should i use?

share|improve this question
What do you see? Are you sure $user is a valid UID? – Kevin Montrose Nov 30 '09 at 6:57
yeah, and i can't see anything, it prints an empty space there. I used the code from the facebook api – user220755 Nov 30 '09 at 6:59
actually i tried $fb_user as they say here : wiki.developers.facebook.com/index.php/PHP and it still does not work – user220755 Nov 30 '09 at 7:03

1 Answer

up vote 1 down vote accepted

Are you doing this through a canvas application or Facebook Connect?

In either case, it's probably one of two issues: Either (A) the Facebook object is being fired up with the wrong api key or secret, or (B) you haven't authorized the application, so there's no UUID coming through.

Calling this before that code of yours should fix both:

$facebook = new Facebook(YOUR_API_KEY,YOUR_SECRET_CODE);
$user = $facebook->require_login();
share|improve this answer

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.