6 messages in com.googlegroups.bloggerdevRe: [bloggerDev] Re: How to find list...
FromSent OnAttachments
Naresh09 Jun 2007 04:03 
Frank Mantek11 Jun 2007 02:57 
Naresh11 Jun 2007 03:06 
Frank Mantek13 Jun 2007 00:06 
Naresh Bohra13 Jun 2007 04:35 
Frank Mantek14 Jun 2007 07:39 
Subject:Re: [bloggerDev] Re: How to find list of all Contributors in ASP.net2.0 using Google API
From:Naresh Bohra (nar@cybersurfindia.com)
Date:06/13/2007 04:35:30 AM
List:com.googlegroups.bloggerdev

Hi Frank,

I have tested it on entry level ,there I found the value of " entry.Contributors.Count "=0.So I got nothing result.but thanks for advice that inspire me to think in new direction.

Naresh

Thanks for your reply,

On 6/13/07, Frank Mantek <fman@gmail.com> wrote:

First of all the way you are currently doing it would ONLY get you contributors on the FEED level itself. If the contributors are on the entry, not the feed, you would not find them this way.

Second, you are requerying the feed on every loop iteration, you should cache the object... like this (not syntax checked):

AtomFeed feed = service.Query(query);

// your code to check for contributors on the feed level:

For v = 0 To feed.Contributors.Count - 1 Response.Write("<li>") Response.Write(feed.Contributors(v).Name.ToString) Next

for x = 0 to feed.Entries.Count - 1 Entry entry = feed.Entries[x] for y =0 to entry.Contributors.Count - 1 ....

Something like that...

On 6/11/07, Naresh < nar@cybersurfindia.com> wrote:

Hi Frank Mantek, I want to get result(blog Data) filter by contributors from my blog.At Present there are two contributors in my blog.feed is AtomFeed. I print author name then it print my name. Thanks for reply. On Jun 11, 2:57 pm, "Frank Mantek" < fman@gmail.com> wrote:

So what is that code doing? What is the feed it works on? Are there contributors in the feed?

On 6/9/07, Naresh < nar@cybersurfindia.com> wrote:

dim v as integer For v = 0 To service.Query(query).Contributors.Count - 1 Response.Write("<li>") Response.Write(service.Query(query).Contributors(v).Name.ToString) Next Why this code not giving me contributors list.