5 messages in com.googlegroups.bloggerdevRE: [bloggerDev] Re: [bloggerDev]Mult...
FromSent OnAttachments
Don Raikes25 Jul 2005 17:13 
Chirantan Ghosh26 Jul 2005 07:22 
Lucas Wyrsch26 Jul 2005 10:07 
Chirantan Ghosh26 Jul 2005 10:31 
Eric Case28 Jul 2005 14:00 
Subject:RE: [bloggerDev] Re: [bloggerDev]Multiple blog posting
From:Lucas Wyrsch (luca@yahoo.fr)
Date:07/26/2005 10:07:52 AM
List:com.googlegroups.bloggerdev

Yes, Use RSS (Really Simple Syndication) for posting same content in multiple blogs!

BTW, a syndication format that was developed by Netscape in 1999 and became very popular for aggregating updates to blogs and the latest news from Web sites. RSS has also stood for "Rich Site Summary" and "RDF Site Summary." See syndication format, blog and podcasting.

If you never used RSS, go to the feedburner http://www.feedburner.com/ and burn a feed.

After, go to Newsgator (http://www.newsgator.com/ngs/) and take the OPML (Outline Processor Markup Language) An XML-based format for describing outline-based content such as playlists and to-do lists.

Thanks to Newsgator, you feed your own blog with your RSS and then you can feed your other blogs with your first blog's RSS content automatically, seamlessly, online and in real time.

Try it. Regards Lucas

--- Chirantan Ghosh <cgh@primarywave.com> a écrit :

Hi All,

I am a newbie hence, much ignorant than you can imagine & desperately in need of help/direction.

I was wondering if there is a way of posting same content in multiple blogs(from Blogger)? Does blogger disapprove of automated/multiple posting? Can we have a PHP code to print material?

I just want to create multiple blogs with similar interest group & a lot of the content would be same so If anyone could please enlighten me it would help a lot.

Thanks, C

----- Original Message ----- From: "Don Raikes" <d.@draikes.com> To: <blog@googlegroups.com> Sent: Monday, July 25, 2005 8:13 PM Subject: [bloggerDev] blogger api and perl

Hello,

I am fairly new to blogger and to perl.

Does anyone have a working example of how to post to blogger via a perl script?

I saw an example but it just gavea stub of a program, and when I tried to make it work, I get an error.

My script is as follows:

#!/usr/bin/perl use strict; use warnings;

use Data::Dumper;

use XMLRPC::Lite;

my $username = "username"; my $password = "password"; my $blogid = "1"; my $proxyurl = 'http://plant.blogger.com/api/RPC2'; my $appkey = "0123456789ABCDEF"; # the value of this is not important, it's just an ID for your script my $msg = "This is just a test of my bnp.pl script"; # # my $res = XMLRPC::Lite -> proxy($proxyurl) -> call('blogger.newPost', $appkey, $blogid, $username, $password, $msg, 'true') -> result;

if (defined ($res)) { print "--success--\n"; print Dumper ($res); } else { print "failed: $!"; }

When I run the script I get: failed: Bad file descriptor

Any tips would be greatly appreciated.