Hi Markus,
It appears that your usage is correct... what is the result of
count($posts)?
Best regards,
Darby
Markus Wolff wrote:
> Hey guys,
>
> I'm currently trying to figure out Zend_Service_Delicious. I really
> don't want to do anything complicated, just fetch a user's public posts.
> According to the manual, this should work nicely:
>
> $feed = new Zend_Service_Delicious();
> $posts = $feed->getUserPosts('mwolff');
> foreach($posts as $item) {
> echo "<pre>"; print_r($item); echo "\n</pre>";
> }
>
> After the call to getUserPosts(), $posts does contain a
> Zend_Service_Delicious_PostList object. The following iteration,
> however, yields no results whatsoever.
>
> This is with a checkout of trunk from Monday. What am I doing wrong? Am
> I doing anything wrong??
>
> Thanks,
> Markus
>
>