auth0记得上次登录永远不适用于iOS

时间:2016-05-04 02:02:32

标签: auth0

我有一个离子/角度1.x应用程序。我使用Auth0(auth0.com)来验证我的用户。当我在浏览器上测试我的应用程序(使用离子服务)时,auth0可以记住我上次登录的用户凭据。但是,当我将我的应用程序部署到真实设备(iPhone)时,Auth0希望我每次都输入用户凭据(用户名+密码)。

我尝试在我的auth.signin()方法中添加rememberLastLogin: true,,但它永远不会有效。下面是我的代码剪辑:我想知道是否有人遇到过相同的情况,可以给我一些方向,我可以检查。非常感谢你!

auth.signin({
      onestep: true,
      showIcon: true,
      rememberLastLogin: true,
      signupFooterText: "this line won't appear..",

      signupTitle: "don't show",
      icon: "http://icons.iconarchive.com/icons/trysoda/soda-red/256/Keys-icon.png",

      authParams: {
        scope: 'openid offline_access' // set the refresh token here
      }
    }

0 个答案:

没有答案