Created
April 11, 2010 15:14
-
-
Save btrott/362805 to your computer and use it in GitHub Desktop.
Sample code for using WWW::TypePad::CmdLine
This file contains hidden or 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
#!/usr/bin/perl -w | |
use strict; | |
use IO::Prompt; | |
use WWW::TypePad::CmdLine; | |
my $tp = WWW::TypePad::CmdLine->initialize( requires_auth => 1 ); | |
# Fetch the list of the authenticated user's blogs, then put up a prompt | |
# asking the user to choose a blog. | |
my $blogs = $tp->users->blogs( '@self' ); | |
my $tp_blog_id = prompt( 'Choose a TypePad blog: ', -menu => { | |
map { $_->{title} => $_->{urlId} } @{ $blogs->{entries} } | |
} ); | |
die "You need to choose a TypePad blog" unless $tp_blog_id; | |
my $stats = $tp->blogs->stats( $tp_blog_id ); | |
use Data::Dumper; | |
warn Dumper $stats; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment