• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

使用Xamarin.Forms和.net Standard进行Firebase电子邮件/密码身份验证(VS2017)

用户头像
it1352
帮助1

问题说明

是否可以使用具有通用代码.net标准的Android和IOS通用代码开发Firebase电子邮件/密码身份验证?我已经设计了.XAML格式的简单登录"页面,但是没有找到与将Firebase Auth与Xamarin.Forms与.net标准代码共享集成在一起的任何示例.如果可以采用这种策略,可以为我提供示例集成,则将有助于进一步了解.

Is Firebase Email/Password Authentication is possible to develop with common code for Android and IOS with Common Code .net Standards? I have Designed Simple Login page with .XAML format but i dont find any samples related to integration of Firebase auth with Xamarin.Forms with .net standard code share. If this strategy is possible can provide me with sample integration will be helpful for further understanding.

正确答案

#1

是的,绝对有可能.
由于只有特定于平台的Xamarin.Firebase NuGet软件包,因此我们将必须创建一个简单的抽象层,如下所示:

Yes it is definitely possible possible.
Since there are only platform specific Xamarin.Firebase NuGet packages, we will have to create a simple abstraction layer that will look like this:

public interface IFirebaseAuthenticator
{
    Task<string> LoginWithEmailPassword(string email, string password);
}

每个平台都必须单独实现此接口.Android实施:

Each platform will have to implement this interface separately. Android implementation:

public class FirebaseAuthenticator : IFirebaseAuthenticator
{
    public async Task<string> LoginWithEmailPassword(string email, string password)
    {
        var user = await FirebaseAuth.Instance.
                        SignInWithEmailAndPasswordAsync(email, password);
        var token = await user.User.GetIdTokenAsync(false);
        return token.Token;
    }
}

iOS实施:

public class FirebaseAuthenticator : IFirebaseAuthenticator
{
    public async Task<string> LoginWithEmailPassword(string email, string password)
    {
        var user = await Auth.DefaultInstance.SignInAsync(email, password);
        return await user.GetIdTokenAsync();
    }
}

现在,您只需在XF级别上使用 IFirebaseAuthenticator .有关更多详细信息,请查看有关此内容的详细文章及其源代码在此处.

Now you can simply use IFirebaseAuthenticator on the XF level. For more details you can check a detailed article about it and its source code is available here.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfijej
系列文章
更多 icon
同类精品
更多 icon
继续加载