Created
January 6, 2011 17:00
-
-
Save tmyt/768160 to your computer and use it in GitHub Desktop.
Azurea Script Sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
選択されたユーザのホームからPost数を探してきて表示してみる API版(Require API Level:5-) | |
*/ | |
System.addContextMenuHandler('Get tweets count', 0, function(id){ | |
var st = TwitterService.status.get(id); | |
var xml = TwitterService.call('/users/show/' + st.user.screen_name + '.xml'); | |
if(xml.match('<statuses_count>(\\d+)</statuses_count>')){ | |
System.showNotice("@" + st.user.screen_name + "'s total tweets: " + RegExp.$1); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment