简体   繁体   中英

asp.net (C#) Facebook GetInfo()

I am struggling to get off with ground with some Facebook dev work. All I want to do is retireve some user info for the logged in user. This is the code I got from another site & it looks fine to me, however is always returns IsConnected() to be false.

I am running this code within an iframe on my facebook app (in sandbox mode)

private const string APPLICATION_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxx";
private const string SECRET_KEY = "xxxxxxxxxxxxxxxxxxxxxxxxxx";

public Facebook.Rest.Api Api;   
private Facebook.Session.ConnectSession _connectSession;   

protected void Page_Load(object sender, EventArgs e)
{

    _connectSession = new Facebook.Session.ConnectSession(APPLICATION_KEY,SECRET_KEY);

    if (!_connectSession.IsConnected())
    {
        lit.Text = "Please sign-in with Facebook.";
    }
    else
    {
        try
        {
            Api = new Facebook.Rest.Api(_connectSession);
            Facebook.Schema.user u = Api.Users.GetInfo();
            img.ImageUrl = u.pic_square;
            lit.Text = string.Format("Welcome, " + u.name);
        }
        catch (Exception ex)
        {
            lit.Text = ex.Message;
        }
    }
}

See this other SO question about a similar problem . The poster apparently found what he was looking for, but didn't know how to implement it. You may be able to do so, since there's a lot of information in the question body.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM