WP8 - Facebook登录问题

时间:2013-09-13 09:15:10

标签: c# facebook windows-phone-8 facebook-c#-sdk

我正在尝试使用Windows Phone 8上的Facebook C#SDK在Facebook上对用户进行身份验证。为此,我在此处遵循以下代码:FacebookLoginPage.xaml.cs

但我面临的问题是,每当我将用户名和密码输入打开以验证用户身份的对话框时,我就会看到以下页面:

WP8 FB Login Prob

在此之后,我的程序不会重定向到Landing页面,这是一个单独的视图。我看到的其他解决方案建议隐藏WebView不适用,因为身份验证被抽象为单个LoginAsync函数调用。 关于该怎么做的任何建议?

3 个答案:

答案 0 :(得分:6)

当FB检测到Windows Phone Web浏览器控件时,它似乎已对其重定向脚本进行了一些更改。

C#SDK的作用是将登录页面生成为“http://www.facebook.com ....”。当您在webbrowser控件上打开此URL时,它会被重定向到“http://m.facebook.com ...”,它会显示FB登录页面的移动版本。

以前没有问题,但是最近,当FB进行重定向时,它还会从URL中删除参数“display = page”。然后发生的是,当成功进行FB登录时,将打开“login_success.html”页面而不使用此参数。如果没有传入“display = page”参数,则默认为“display = touch”。遗憾的是,此URL不会在URL中附加标记字符串,因此会显示第一个主题中显示的页面。

解决方法是,不是使用以下代码生成登录URL,而是将其修改为

原:

Browser.Navigate(_fb.GetLoginUrl(parameters));

ammended:

var URI = _fb.GetLoginUrl(parameters).toString().replace("www.facebook.com","m.facebook.com");
Browser.Navigate(new Uri(URI));

答案 1 :(得分:1)

在我的项目中,我只是听了WebView的导航事件。如果它发生,则意味着用户在登录页面上做了一些事情(即按下登录按钮)。 然后我解析了你提到的应该包含OAuth回调网址的页面的uri,如果它是正确的并且结果是成功的话我会手动重定向到正确的页面:

    //somewhere in the app
    private readonly FacebookClient _fb = new FacebookClient();

    private void webBrowser1_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
    {
        FacebookOAuthResult oauthResult;
        if (!_fb.TryParseOAuthCallbackUrl(e.Uri, out oauthResult))
        {
            return;
        }

        if (oauthResult.IsSuccess)
        {
            var accessToken = oauthResult.AccessToken;
            //you have an access token, you can proceed further 
            FBLoginSucceded(accessToken);
        }
        else
        {
            // errors when logging in
            MessageBox.Show(oauthResult.ErrorDescription);
        }
    }

如果您在异步函数中抽象日志记录,那么您希望它以异步方式运行,因此事件就可以了。

抱歉我的英文。

整页的代码:

public partial class LoginPageFacebook : PhoneApplicationPage
{
    private readonly string AppId = Constants.FacebookAppId;
    private const string ExtendedPermissions = "user_birthday,email,user_photos";
    private readonly FacebookClient _fb = new FacebookClient();
    private Dictionary<string, object> facebookData = new Dictionary<string, object>();
    UserIdentity userIdentity = App.Current.Resources["userIdentity"] as UserIdentity;

    public LoginPageFacebook()
    {
        InitializeComponent();
    }

    private void webBrowser1_Loaded(object sender, RoutedEventArgs e)
    {
        var loginUrl = GetFacebookLoginUrl(AppId, ExtendedPermissions);
        webBrowser1.Navigate(loginUrl);
    }

    private Uri GetFacebookLoginUrl(string appId, string extendedPermissions)
    {
        var parameters = new Dictionary<string, object>();
        parameters["client_id"] = appId;
        parameters["redirect_uri"] = "https://www.facebook.com/connect/login_success.html";
        parameters["response_type"] = "token";
        parameters["display"] = "touch";

        // add the 'scope' only if we have extendedPermissions.
        if (!string.IsNullOrEmpty(extendedPermissions))
        {
            // A comma-delimited list of permissions
            parameters["scope"] = extendedPermissions;
        }

        return _fb.GetLoginUrl(parameters);
    }

    private void webBrowser1_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
    {
        if (waitPanel.Visibility == Visibility.Visible)
        {
            waitPanel.Visibility = Visibility.Collapsed;
            webBrowser1.Visibility = Visibility.Visible;
        }

        FacebookOAuthResult oauthResult;
        if (!_fb.TryParseOAuthCallbackUrl(e.Uri, out oauthResult))
        {
            return;
        }

        if (oauthResult.IsSuccess)
        {
            var accessToken = oauthResult.AccessToken;
            FBLoginSucceded(accessToken);
        }
        else
        {
            // user cancelled
            MessageBox.Show(oauthResult.ErrorDescription);
        }
    }

    private void FBLoginSucceded(string accessToken)
    {

        var fb = new FacebookClient(accessToken);

        fb.GetCompleted += (o, e) =>
        {
            if (e.Error != null)
            {
                Dispatcher.BeginInvoke(() => MessageBox.Show(e.Error.Message));
                return;
            }

            var result = (IDictionary<string, object>)e.GetResultData();
            var id = (string)result["id"];

            userIdentity.FBAccessToken = accessToken;
            userIdentity.FBID = id;

            facebookData["Name"] = result["first_name"];
            facebookData["Surname"] = result["last_name"];
            facebookData["Email"] = result["email"];
            facebookData["Birthday"] = DateTime.Parse((string)result["birthday"]);
            facebookData["Country"] = result["locale"];

            Dispatcher.BeginInvoke(() =>
                {
                    BitmapImage profilePicture = new BitmapImage(new Uri(string.Format("https://graph.facebook.com/{0}/picture?type={1}&access_token={2}", id, "square", accessToken)));
                    facebookData["ProfilePicture"] = profilePicture;

                    userIdentity.FBData = facebookData;
                    userIdentity.ProfilePicture = profilePicture;

                    ARLoginOrRegister();
                });
        };

        fb.GetAsync("me");
    }

    private void ARLoginOrRegister()
    {
        WebService.ARServiceClient client = new WebService.ARServiceClient();
        client.GetUserCompleted += client_GetUserCompleted;
        client.GetUserAsync((string)facebookData["Email"]);
        client.CloseAsync();
    }

    void client_GetUserCompleted(object sender, WebService.GetUserCompletedEventArgs e)
    {
        if (e.Result == null)
            NavigationService.Navigate(new Uri("/RegisterPageFacebook.xaml", UriKind.RelativeOrAbsolute));
        else if (e.Result.AccountType != (int)AccountType.Facebook)
        {
            MessageBox.Show("This account is not registered with facebook!");
            NavigationService.Navigate(new Uri("/LoginPage.xaml", UriKind.RelativeOrAbsolute));
        }
        else
        {
            userIdentity.Authenticated += userIdentity_Authenticated;
            userIdentity.FetchARSocialData((string)facebookData["Email"]);
        }

    }

    void userIdentity_Authenticated(bool success)
    {
        NavigationService.Navigate(new Uri("/MenuPage.xaml", UriKind.RelativeOrAbsolute));
    }
}

答案 2 :(得分:1)

在尝试进行所有建议的更改之前, 请检查您的Facebook应用程序是否处于沙盒模式。这最终将解决您的问题。

enter image description here

如果您的Facebook应用程序处于沙盒模式,则只有开发人员可以使用他的电子邮件地址登录。任何其他fb用户都将获得白页。

相关问题