-1

这是我的 UserLogin.aspx 页面代码,其中包含 Facebook 用户的身份验证,问题是我在会话中维护令牌,后来我在 Default.aspx 上使用它。如果你看到 Session["facebook_token"] = authToken;

在我的 Default.aspx 页面加载中,我放置了此代码,但是当我转到主页或默认页面时,它给了我空值。

    if (Session["facebook_token"] != null)
        lblUserName.Text = Session["facebook_token"].ToString();


using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using SocialMediaModel;
using Facebook.Components;

public partial class UserLogin : System.Web.UI.Page
{
FacebookService _fbService = new FacebookService();
private const string FACEBOOK_API_KEY = "551810942508804";
private const string FACEBOOK_SECRET = "b63b8cca428b42935e6eab59976367b1";

protected void Page_Load(object sender, EventArgs e)
{
    // ApplicationKey and Secret are acquired when you sign up for
    _fbService.ApplicationKey = FACEBOOK_API_KEY;
    _fbService.Secret = FACEBOOK_SECRET;
    _fbService.IsDesktopApplication = false;

    string sessionKey = Session["facebook_session_key"] as String;
    string userId = Session["facebook_userId"] as String;

    string authToken = Request.QueryString["auth_token"];

    Session["facebook_token"] = authToken;

    // We have already established a session on behalf of this user
    if (!String.IsNullOrEmpty(sessionKey))
    {
        _fbService.SessionKey = sessionKey;
        _fbService.UserId = 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.UserId;
        Session["facebook_session_expires"] = _fbService.SessionExpires;
    }
    // Need to login
    else
    {
        Response.Redirect(@"http://www.facebook.com/login.php?api_key=" +   
       _fbService.ApplicationKey + @"&v=1.0");
    }


    }
}
4

1 回答 1

0

string authToken = Request.QueryString["auth_token"];

Session["facebook_token"] = authToken;

看起来您在每个页面加载(?)上都执行这些行 - 甚至没有检查此名称是否存在GET参数。

于 2012-07-24T11:29:21.333 回答