The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

SYNOPSYS

    use WebService::Diffbot;
    
    my $diffbot = WebService::Diffbot->new(
        token => 'mytoken',
        url => 'http://www.diffbot.com'
    );

    # Article API
    my $article = $diffbot->article;

    print "url:   $article->{url}";
    print "text:  $article->{text}";
    ...

    # Frontpage API
    my $frontpage = $diffbot->frontpage;
    ...

    # another Article API - pass new url to method
    $article = $diffbot->article( url => 'http://www.youtube.com' );

    print "url:   $article->{url}";
    print "text:  $article->{text}";
    ...

DESCRIPTION

This is the (unofficial) Diffbot Perl API - see http://www.diffbot.com for more info.

Warning, currently it supports only the Article and Frontpage API (v2).

SEE ALSO

Net::DiffBot for old API