Set your spinnarets to ON

Jul 11, 2005 09:19

If I wanted to set up an RSS feed for my journal on a personal site (say, my UCC public-html area*), how hard would it be and what would I use**? What if I wanted to create a parallel site that aggregated everything I like to read in one place? Could that site also access locked LJ posts with appropriate authentication efforts? Is there a pre- ( Read more... )

coding, blogging

Leave a comment

theducks July 10 2005, 18:48:41 UTC
I'm currently playing with magpierss .. it's pretty easy:

require_once('magpierss/rss_fetch.inc');
$rss=fetch_rss("http://theducks.livejournal.com/data/rss");

foreach( $rss->items as $item) {
$i++;
if ($i < 5) {
if ($i > 1) { echo ""; }
echo "$item[pubdate] - $item[title]
$item[summary]
Comment on this
";
}
}
echo "Archives";
?>

Reply

ataxi July 10 2005, 18:50:01 UTC
Neat. Can you get someone's locked posts that way?

Reply

theducks July 10 2005, 18:53:05 UTC
No

Reply

ataxi July 10 2005, 18:56:21 UTC
That's one of the main issues for me ... although I guess I could get away with not reading locked posts from here on in.

Reply

doctor_k_ July 10 2005, 19:15:54 UTC
Well, there goes half my ramblings....

Reply

ataxi July 10 2005, 19:28:00 UTC
Yeah, I know. That type of thing is why I have a problem. Looks like there may be solutions out there though - LiveJournal supports this OpenID thingy that looks like it will allow me to aggregate locked posts (at least it had better, or else I really don't see the use in it).

Wouldn't want to miss out on any clueful ramblings.

Reply

theducks July 10 2005, 18:51:44 UTC
Ahh it's also in PHP btw.

http://magpierss.sourceforge.net/

Reply


Leave a comment

Up