我不能使用苹果脚本从钥匙串中读取“帐户名称”。
这不起作用:
tell app "Keychain Scripting" to get account of "app name"
我可以使用以下方法从钥匙串中读取密码:
local password
set password to do shell script ("security 2>&1 >/dev/null find-generic-password -gl " & quoted form of "app name" & " | cut -c 11-99 | sed 's/\"//g'")
是否有文档说明可用于钥匙串脚本编写的命令?