当我尝试测试我用统一的方式制作的Facebook即时游戏时,在浏览器控制台中遇到了以下错误。
Blocked opening 'https://www.facebook.com/v2.6/dialog/oauth?
app_id=3271731873434719&auth_type=rerequest&...&version=v2.6'
in a new window because the request was made in a sandboxed frame whose 'allow-popups'
permission is not set.
这种情况发生在我试图登录Facebook的按钮单击上。 下面是通过单击按钮执行的代码。
var permissions = new List<string> {"public_profile", "email"};
FB.LogInWithReadPermissions(permissions, AuthCallback);
感谢任何帮助来解决此问题的方法。