我在我的 ionic 应用程序中使用 satellizer 库进行 facebook 身份验证。
在开发过程中(在浏览器中完成).. satellizer fb 对象配置为:
$authProvider.facebook({
clientId: AppConstants.facebook.clientId,
scope: 'user_friends',
url: 'http://localhost:3000/auth/facebook'
});
这工作正常。但是,当我在模拟器中运行应用程序的那一刻,我收到以下错误:
The redirect_uri is not supported
如何解决这个问题?