2016-03-14 68 views
1

我使用Twitter在Azure移动应用程序中对用户进行身份验证。我想将帐户信息保存在手机上,以便用户在每次启动应用程序时都不必登录。这是一个Xamarin.iOS应用程序。如何在Xamarin.iOS Azure移动应用程序中存储帐户信息?

如果我正在构建一个Windows应用程序,我会使用PasswordVault,如the Azure Mobile Apps documentation under "Caching the authentication token"中所述。

如果我使用Xamarin.Auth,我将使用AccountStore,如the Xamarin.Auth documentation under "Storing and Retrieving Account Information on Devices"中所述。

我看到Azure Mobile App SDK包含a modified version of the Xamarin.Auth plugin。我可以用那种方式使用AccountStore吗?

如果不是,在Xamarin.iOS中保存帐户信息的最佳方法是什么?

回答

相关问题