IOS Touch ID For Web Development
I am currently trying to figure out a way where I can build a responsive website, however once the website loads on an iOS Device I wanted to use the new iOS Touch ID api to allow
Solution 1:
There is a Apache Cordova plugin that gives you a simple Javascript API. Using it becomes a simple call like this:
touchid.checkSupport(successCallback, notSupportedCallback);
touchid.authenticate(successCallback, failureCallback, text);
Hope that helps
Post a Comment for "IOS Touch ID For Web Development"