I'm trying to create a page in Wordpress that will display the user's Facebook ID after they have logged in to our Wordpress site using WP-FB AutoConn plugin (to sign in using their Facebook credentials).
For the Facebook game the site is being built to offer community support for, the user needs to know their facebook ID (which they frequently don't know how to find, which then has to be explained to them).
Since they are logging into the Wordpress site with their Facebook credentials, it seems like we should be able to have a page they can go to that would display their Facebook ID.
I used:
<?php global $current_user;
get_currentuserinfo();
echo 'Username (user_login): ' . $current_user->user_login . "\n";
echo 'User email (user_email): ' . $current_user->user_email . "\n";
echo 'User first name (user_firstname): ' . $current_user->user_firstname . "\n";
echo 'User last name (user_lastname): ' . $current_user->user_lastname . "\n";
echo 'User display name (display_name): ' . $current_user->display_name . "\n";
echo 'User ID (ID): ' . $current_user->ID . "\n";
?>
...which displays the Wordpress login info. Initially I thought the user_email was their facebook ID preceded by FB_ (as in: FB_665611340@unknown.com --which is how it shows up under "Users" in Wordpress), but that must be a randomly generated number because it isn't their facebook ID.
I'm not really a coder, but trying to learn, any insight appreciated!