- IP Alerts: If you've flagged an IP, get an alert that this person is currently visiting your site
- Account capacity: Get an alert that you're about to or have already exceeded your daily hits
- Billing: Get an alert when your account is due for a payment
- Alerts about new blog posts, scheduled downtime etc
So, if you are interested in such a feature, just follow the WunderCounter Twitter feed. I've just set up the feed, so there aren't currently any followers. If that continues to be the case, I'll know that there's no interest. ;) Just testing the waters at this point.
Having said all of that, here's an example of how easy it is to use the API. In just 4 lines of Perl, you can update your Twitter status:
#!/usr/bin/perl
use Net::Twitter;
my $twit = Net::Twitter->new({username=>"myuser", password=>"mypass" });
my $result = $twit->update({status => "I use the WunderCounter!"});
No comments:
Post a Comment