How secure is using Authentication API client methods in my android app for sign in and sign up?

I have an android app. I am using Authentication API methods signup and login to authentication my users. I have created my own UI. How secure is this communication? Will the username, password transmitting over the network be encrypted? This is my code snippet
val client = AuthenticationAPIClient(account)
client.login(username, password, “Username-Password-Authentication”)

Hello @vijayazararia !

While not as secure as using Universal Login, using the Authentication API is encrypted and is generally secure as well. However, there are some important drawbacks to using an embedded authentication flow which are outlined here:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.