I'm building a facebook app for a client. They want to greet the current user by name. I was under the impression that this was possible without the user granting access as it is public data but I can't seem to get it to work without.
Having the user grant access to the app seems a little long winded just to greet them.
I'm using the PHP sdk.
Here is the app: http://www.facebook.com/pages/Why-Digital-Media/163519223704680?sk=app_271013792913122
Here is the code that should display the name:
<?php if ($user): ?>
<?php $username = $user_profile['name']; ?>
<?php echo "<span id=\"welcome\" title=\"Hi $username\" id='caption_span'>Hi $username</span>" ?>
<?php else: ?>
<?php echo "<span title=\"Hi!\" id='caption_span'></span>" ?>
<?php endif ?>
it is modded from the example.php file that comes with the sdk.
Is it actually possible to do this?