diff --git a/fb_connect.module b/fb_connect.module
index e9fff5f..612e29c 100644
--- a/fb_connect.module
+++ b/fb_connect.module
@@ -74,7 +74,8 @@ function fb_connect_translated_menu_link_alter(&$item) {
       // Replace the menu item link with a link customized for the current page.
       if ($token = fb_user_token()) {
         try {
-          $me = fb_graph('me', $token);
+          $fields = array('link', 'name');
+          $me = fb_graph('me', array('fields' => $fields, 'access_token' => $token));
 
           // user is already connected.
           $item['href'] = $me['link'];
