Page 1 of 1

Lansa Mobile Touch Id and Facial Id

Posted: Tue Nov 19, 2019 2:01 am
by stevec
I implemented this in our longrange version of our apps
viewtopic.php?f=11&t=536&p=1620#p1620
viewtopic.php?f=11&t=536&p=1620#p1620

We are now rewriting in Vlweb with lansa mobile for device features. Is this possible in Lansa mobile? If so How?

Re: Lansa Mobile Touch Id and Facial Id

Posted: Tue Nov 19, 2019 10:35 am
by jasonzhou
In LANSA Mobile, passwords can't be saved by schema. However, in JavaScript API, you can still save multiple users and passwords.

Code: Select all

// Save user1
Fingerprint.addAccount({
  username: "user1",
  password: "123"
})

// Save user2
Fingerprint.addAccount({
  username: "user2",
  password: "456"
})


// Start fingerprint authentication for user1
Fingerprint.startAuth({
  username: "user1"
})


Re: Lansa Mobile Touch Id and Facial Id

Posted: Tue Nov 19, 2019 10:54 am
by stevec
Are you saying Lansa mobile does not support touch id and that I must use java script?

Re: Lansa Mobile Touch Id and Facial Id

Posted: Wed Nov 20, 2019 9:31 am
by jasonzhou
Thanks right, LANSA Mobile can't directly run operations like RegisterTouchID as in LongRange.