[UPDATE:其實,我很喜歡這更好:http://360percents.com/posts/command-line-twitter-status-update-for-linux-and-mac/ - 這也可能使用AppleScript,如果使用一個簡單的bash腳本你真的知道你在做什麼。下面的方法也可以正常工作。]
另一種方式來做到這一點(如果你正在後自動啁啾的過程)是下載twitchi,這是Twitter的一個命令行工具,並寫AppleScript利用做shell腳本。你仍然可以讓你的twitter客戶端打開。
無可否認,我還沒有嘗試過,但我有點想。如果你對如何工作感興趣,我會測試它。下面是輸出描述用法:
usage: twitchi
-af,--addFriend Add friend.
-au,--auth Authenticate twitchi to post to your Twitter
account.
-bu,--blockUser Block user.
-dm,--directMsg Send direct message.
-h,--help Show usage information
-m,--msg <arg> Message/Status text/Search query. To be used in
conjunction with other options.
-p,--page <arg> Page number. To be used in conjunction with other
options.
-ph,--proxyHost <arg> Proxy host. To be used in conjunction with -sp.
-pp,--proxyPort <arg> Proxy port. To be used in conjunction with -sp.
-rf,--removeFriend Remove friend.
-rp,--removeProxy Remove proxy.
-s,--search Search.
-sd,--showDM Show direct messages.
-sf,--showFolls Show followers.
-sp,--setProxy Set proxy.
-sr,--showFrnds Show friends.
-st,--showTimeline Show timeline.
-u,--user <arg> Username. To be used in conjunction with other
options.
-ui,--userInfo Show user info.
-us,--updateStatus Update status.
-ut,--userTimeline Show user timeline.
-uu,--unblockUser Unblock user.
我最終得到了類似這樣的東西,它使用Javascript單擊Safari中的按鈕來模擬在Web瀏覽器中作爲用戶。不太優雅,但它運作良好。 –