Hi -
I'm using C# and the .NET API to access a blog.
Can anyone help me with the following questions.
Question #1. When executing a query I need to bring back a limited
number of blog entries. Unfortunately my query is bringing back all
entrys for the blog.
Looking at the following code do you see anything wrong?
FeedQuery rFeedQuery = new FeedQuery();
Service rService = new Service("blogger", "AnyBlogYouWant");
rFeedQuery.Uri = new Uri(psBloggerURI);
rFeedQuery.NumberToRetrieve = 3;
rFeedQuery.StartIndex = 1;
AtomFeed rAtomFeed = rService.Query(rFeedQuery);
Question #2:
When executing a query does one of the following URI's give a
better response time?
URI #1: http://<blogname>.blogspot.com/feeds/posts/default
URI #2: http://www.blogger.com/feeds/<blogid>/posts/default
Question #3:
When using the .NET API we don't need a developers key do we?
Looking at the samples I don't see where a developers key is needed.
Thanks for the help!
Rob