Microsoft winsdkfb未登录:您尚未登录。请登录并重试。 C#WinRT

时间:2016-02-01 19:56:32

标签: c# facebook windows-runtime windows-10 facebook-login

对于我们新的Windows 10应用程序(C#+ XAML),我们使用新的https://github.com/Microsoft/winsdkfb/登录,但是由于我们已经迁移到此登录,因此我没有运行facebook登录。

我们正在使用FBResult result = await sess.LoginAsync(permissions);并且我一直收到此错误:“未登录:您尚未登录。请登录并重试。”

enter image description here

我的代码完全是他们在github上做的样本的复制和粘贴: 我已经检查了我的SID和FacebookAppId,它们在应用程序和Facebook网站上都是相同的。

public async Task<string> LogIntoFacebook()
        {
            //getting application Id
            string SID = WebAuthenticationBroker.GetCurrentApplicationCallbackUri().ToString();

            //// Get active session
            FBSession sess = FBSession.ActiveSession;
            sess.FBAppId = FacebookAppId;
            sess.WinAppId =  SID;

            //setting Permissions
            FBPermissions permissions = new FBPermissions(PermissionList);

            try
            {
                // Login to Facebook
                FBResult result = await sess.LoginAsync(permissions);

                if (result.Succeeded)
                {
                    // Login successful
                    return sess.AccessTokenData.AccessToken;
                }
                else
                {
                    // Login failed
                    return null;
                }
            }
            catch (InvalidOperationException ex)
            {
                SimpleIoc.Default.GetInstance<IErrorService>().ReportErrorInternalOnly(ex);
                return null;
            }
            catch (Exception ex)
            {
                SimpleIoc.Default.GetInstance<IErrorService>().ReportErrorInternalOnly(ex);
                return null;
            }

            return null;
        }

通过这样做:

//getting application Id
string SID = WebAuthenticationBroker.GetCurrentApplicationCallbackUri().ToString();

它正在为我生成一个如下所示的SID: MS-应用:// S-1-15-2-0000-BLA-BLA-BLA-667 / 所以我尝试将ms-app://添加到facebook开发者设置页面,但它不想要它,所以我尝试从SID中删除ms-app://将其传递给WinAppId但仍然没有运气< / p>

enter image description here

我用我的FBAppId填充了Windows Store SID字段: enter image description here

有没有人有这个问题?

编辑1: 我的代码是从这里复制并粘贴的:http://microsoft.github.io/winsdkfb/

Edit2:播放来自Microsoft的示例我的问题来自我的应用程序ID。 我确实按照第6步: (启用OAuth登录)

  • 在developers.facebook.com上选择已创建的应用。
  • 点击左侧菜单中的“设置”。
  • 点击“高级”标签。
  • 在“OAuth设置”部分下,启用“客户端OAuth登录”和“嵌入式浏览器OAuth登录”。
  • 点击“保存更改”。

1 个答案:

答案 0 :(得分:9)

在尝试了所有内容并且不想使用WebAuthentificationBroker后,我找到了解决方案。

访问Facebook开发者网站:https://developers.facebook.com

然后:

转到您的应用名称 - &gt;设置 - &gt;提前:

下:有效的OAuth重定向URI 您需要添加:https://www.facebook.com/connect/login_success.html

保存,你现在好了! enter image description here