If I request
http://www.adventuresinsoftware.com/blog/?feed=rss2
with Firefox or IE I get the full result.
When I use Snoopy all the items are missing from this feed. I tried to solve this issue hacking the User-Agent, but that didn't work.
Is this a UTF-8 issue? or something else?
I don't understand why the Snoopy result is truncated.
I have sample code below.
Thanks,
mjlefevre
<?php
require_once('Snoopy.php');
$snoop = new Snoopy();
$feed_url = 'http://www.adventuresinsoftware.com/blog/?feed=rss2';
$snoop->fetch($feed_url);
$content = $snoop->results;
print $content;
?>