Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Weblogs.com xml-rpc update notifier

by benhammersley (Novice)
on Oct 18, 2001 at 21:22 UTC ( [id://119740]=sourcecode: print w/replies, xml ) Need Help??
Category: Web Stuff
Author/Contact Info Ben Hammersley ben@benhammersley.com
Description: A command line perl tool that uses xml-rpc to tell weblogs.com that your blog has been updated. See here Fun from both the command line and cron. weblogscom.pl uses command line options, so invoke it like this... perl weblogscom.pl --title=BLOG_TITLE -- url=BLOG_URL
#!/usr/bin/perl -w

use strict;
use Frontier::Client;
use Getopt::Long;

use constant WEBLOGCOMXMLRPCSERVER => 'http://rpc.weblogs.com/RPC2';

my $MYBLOGTITLE = "";
my $MYBLOGURL     = "";
my $client     = "";
my $response     = "";
my $output     = "";


GetOptions( "title=s" => \$MYBLOGTITLE,
        "url=s" => \$MYBLOGURL);

$client = Frontier::Client->new(
    url        => WEBLOGCOMXMLRPCSERVER,
    use_objects    => 0,
    debug        => 0);

$response = $client -> call ('weblogUpdates.ping', $MYBLOGTITLE, $MYBL
+OGURL);

print "Weblogs.com said: \n\n $response->{'message'}\n\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: sourcecode [id://119740]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (7)
As of 2024-04-19 10:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found