我正在尝试从 Mac Twitter 应用程序中的推文中获取作者 ID。
tell application "Twitter"
properties of item 3 of status of (home timeline of account 1)
end tell
tell application "Twitter"
author of item 3 of status of (home timeline of account 1)
end tell
如何隔离“128938832”?
解决方案:AppleScript-Users 邮件列表中的 Chris 刚刚回答了我的问题。author 属性有一个 user id 属性。user id of author of item 3 of status of (home timeline of account 1)
返回“128938832”。