using facebook;
using System.Xml.Linq;
public partial class _Default : System.Web.UI.Page
{
protected facebook.Components.FacebookService _fbService = new facebook.Components.FacebookService();
protected void Page_Load(object sender, EventArgs e)
{
_fbService.ApplicationKey = ConfigurationManager.AppSettings["AppKey"];
_fbService.Secret = ConfigurationManager.AppSettings["Secret"];
_fbService.IsDesktopApplication = Convert.ToBoolean(ConfigurationManager.AppSettings["Desktop"]);
try
{
string sessionKey = Session["facebook_session_key"] as String;
string userId = Session["facebook_userId"] as String;
// When the user uses the Facebook login page, the redirect back here
// will will have the auth_token in the query params
string authToken = Request.QueryString["auth_token"];
if (!String.IsNullOrEmpty(sessionKey))
{
_fbService.SessionKey = sessionKey;
_fbService.uid = Convert.ToInt64(userId);
}
// This will be executed when Facebook login redirects to our page
else if (!String.IsNullOrEmpty(authToken))
{
_fbService.CreateSession(authToken);
Session["facebook_session_key"] = _fbService.SessionKey;
Session["facebook_userId"] = _fbService.uid.ToString();
Session["facebook_session_expires"] = _fbService.SessionExpires;
}
//We can excess the user Details if we have a valid user Id.
if (_fbService.uid.ToString() != "0")
{
facebook.Schema.user user = _fbService.users.getInfo();
SetControlVisibility(_fbService.uid.ToString());
//function for printing user greetings.
GetUserName(user);
//function for Extracting User Profile.
SetUserProfile(user);
//function for retreiving user's friends list.
GetUsersFriendsList();
}
}
catch (Exception ex)
{
lblUserName.Text = ex.Message.ToString();
}
}
private void GetUsersFriendsList()
{
String uids = String.Empty;
IList<facebook.Schema.user> userFriendsInfo;
friends friendUid = new friends(_fbService.API);
IList<long> ids = friendUid.get();
for (int i = 0; i < ids.Count; i++)
{
uids = uids + "," + ids[i];
}
if (uids != String.Empty)
{
userFriendsInfo = _fbService.users.getInfo(uids);
foreach (facebook.Schema.user u in userFriendsInfo)
{
lstFriends.Items.Add(u.name);
}
}
}
/// <summary>
/// Facebook provides a built in web control to show the User profile.
/// All we need to do here is to pass our user object to that control.
/// </summary>
/// <param name="user"></param>
private void SetUserProfile(facebook.Schema.user user)
{
UserProfile1.User = user;
}
/// <summary>
/// Function for setting the visibility of the controls.
/// </summary>
/// <param name="uid"></param>
private void SetControlVisibility(string uid)
{
//For a valid user, hide the login button and show the other control.
if (uid != "0")
{
table2.Visible = true;
lblGreetUser.Visible = true;
lblGreet.Visible = true;
lblUserName.Visible = true;
lblFriendsList.Visible = true;
lstFriends.Visible = true;
UserProfile1.Visible = true;
}
}
/// <summary>
/// Facebook user object has variour properties for excessing the user details.
/// Here we are using the first_name and the last_name property.
/// </summary>
/// <param name="user"></param>
private void GetUserName(facebook.Schema.user user)
{
lblUserName.Text = user.first_name + " " + user.last_name;
}
} I cleared my cache in my browser, then try to connect the website in facebook, I got it! I got the profile picture, my name and others.... Then I logout directly in facebook then on my second try the profile picture is not showing.