facebook Oauth2登录错误"您尚未登录"在xamarin.forms中

时间:2017-08-09 10:17:54

标签: android facebook oauth-2.0 xamarin.forms

我试图在我的xamarin.Forms应用程序中使用Oauth2实现Facebook登录页面,但我的登录页面上出现以下错误:" 您尚未登录:您尚未登录。请登录并重试"。

我到处搜索,但我找不到合适的解决方案。

例如,我见过这个解决方案:You are not logged in.Please log in and try again.(iOS)

所以我在参数中设置了重定向网址(在我的代码中):

            var auth = new OAuth2Authenticator(
            clientId: "0000", 
            scope: "", 
            authorizeUrl: new Uri("https://www.facebook.com/v2.9/dialog/oauth/"),
            redirectUrl: new Uri("http://www.facebook.com/connect/login_success.html"));

Facebook developers params

然后我看到一篇帖子说在新版本中我需要在参数中添加我的ios和android平台信息。但对于这一部分,我不确定我输入的信息是否正确:

android platform

android manifest

所以如果你在我发布的内容中找不到任何问题,或者如果你有其他解决方案,那么我将永远感到高兴,因为我现在已经坚持了这个问题。

由于

0 个答案:

没有答案