我有一个需要 Facebook 登录的应用程序。逻辑调用使用
forge.facebook.authorize(
[''],
function() { ... },
function(content) { alert(JSON.stringify(content)); }
);
此调用在 iphone 4 和 ipad 上的 Android 和 ios 5 和 6 上运行良好。它也曾经适用于 iphone 5。但是,最近我的 iphone 5 给出了错误,
{
"message": "The operation couldn't be completed. (com.facebook.sdk error)"
"type": "The operation couldn't be completed. (com.facebook.sdk error)"
"subtype": null
}
我正在使用 Forge 工具版本 3.3.28 和平台版本 1.4。
这会阻止 iphone 5 用户访问该应用程序。关于如何解决的任何想法?