如何使用AppleScript获取推文

时间:2013-03-10 09:33:04

标签: macos twitter applescript

我想获取AppleScript中的最新推文。 但是,“状态”变量无法保存。 如何存储推文状态对象?

它正在运作:

tell application "Twitter"
  set tw to text of item 1 of statuses of home timeline of current account
end tell

它不起作用:

tell application "Twitter"
  set tw to item 1 of statuses of home timeline of current account
  set txt to text of tw
end tell

1 个答案:

答案 0 :(得分:1)

有一天晚些时候提到它,但看看我在Mac AppStore上免费提供的应用程序“Twitter Scripter”。

这是一个不露面的后台应用程序,旨在从AppleScript中轻松访问Twitter API。它支持OS X(10.8+)中的本机Twitter支持,因此您不需要自己处理任何身份验证。您可以从结构化AppleScript记录中检索来自twitter API的响应。

例如:

tell app "Twitter Scripter"
  set myTwitterAccount to item 1 of (available accounts) as string
  -- User timeline: This function retrieves the Tweets for a given user name
  fetch user timeline for username "mousedownsoft" using account myTwitterAccount with excluding replies and including retweets
end