Why am I not able to see user password with getPassword() method in Android?

With this code, the textView shows “null”… In my User table, the column password is empty for every user…

BackendlessUser user = Backendless.UserService.CurrentUser();


textView = (TextView) findViewById(R.id.UserPerfil_textView);
textView.setText(user.getPassword());

Thank you so much.

Hi Alejandro!

You can not get user password due to security reasons.
Password value will be always null.

Regards,
Kate.

Hi Kate,

I was testing the user was Ok and I missed the password. Now, I understand.

Thank you so much :wink: