: Is there an API for displaying a list of Keychain items using Touch ID? In macOS

I'd like to display a list of Keychain items using Touch ID when focusing on a text field, as shown in the image below. I've looked through the documentation but couldn't find an API that can produce the desired effect as shown in the image.

It seems to me that there isn't an API for this and I would need to implement it manually. However, I'm wondering if there might be an API that I'm not aware of.

References: https://developer.apple.com/documentation/localauthentication , https://developer.apple.com/documentation/localauthenticationembeddedui/laauthenticationview

Replies

Hi,

It seems that you want implement password autofill feature. But I think you have to implement app’s associated domains before.

You should take a look at https://developer.apple.com/documentation/security/password_autofill/

  • I am not sure if this work on macOS or if it's only an iOS & web feature

Add a Comment

Thank you!