Have a Xamarin.Forms app relying on Azure AD B2C for auth. B2C does not offer a native login experience, or direct support for biometric logins. Vendors like Nevis and Keyless both appear to require their own application to be used to support biometric logins. Are there vendors that offer an API or SDK for biometric and direct password handling, without relying on ROPC flow?

1

There are 1 best solutions below

0
On

In this scenario you usually use ROPC as initial auth, then protect subsequent access via biometric by wrapping the devices biometric SDK around the MSAL authentication calls.

If (device biometric challenge satisfied)  
{  
acquireTokenSilent()  
}