How to read finger print data in Xojo?

There is anyone who knows or can teach me how to read/capture the finger print from bio-metrics in xojo?

First off you find a bio-metric reader (iPhone has one, few desktops do)… then you research on the Internet to see if the API for that device is exposed and documented… Then you (if possible) write an interface… But I’m gonna bet that for security reasons that API data probably won’t be available…

If you’re looking for iOS info, iPhone’s API looks fairly simple if you just want the user to use a fingerprint to unlock a secure item like a password for a remote service. Reading the actual fingerprint info is impossible (the hardware keeps it isolated from the OS)…

https://developer.apple.com/reference/localauthentication/lacontext?language=objc
https://developer.apple.com/reference/localauthentication?language=objc

It should be able to be done in a few declares. It looks like iOSLib has it…
https://github.com/UBogun/Xojo-iosLib

What have you researched so far?
It looks like, since you bumped this 3 year old thread all you’ve done is look for code you can copy and paste.