2 messages in com.googlegroups.bloggerdevRe: [bloggerDev] Get posts per Blog
FromSent OnAttachments
husseiny30 Aug 2006 07:44 
Frank Mantek31 Aug 2006 00:13 
Subject:Re: [bloggerDev] Get posts per Blog
From:Frank Mantek (fman@gmail.com)
Date:08/31/2006 12:13:14 AM
List:com.googlegroups.bloggerdev

I do assume you are using the C# library? If you are using anything lower than version 1.04, you should upgrade. That + sign is a bug (it's indicating timezone, but should be encoded on the URL, which was fixed a while ago).

On 8/30/06, husseiny <elhu@gmail.com> wrote:

Hi, when i used GData to get posts per blog it gives me an error "Bad Request"

FeedQuery query = new FeedQuery(); query.Uri = new Uri("http://beta.blogger.com/feeds/blogId/posts/full");

query.StartDate = new DateTime(1999,01,01); query.EndDate = new DateTime(2006,08,30);

Service myService = new Service("blogger", ""); AtomFeed resultFeed = myService.Query(query);

When i used the http Get Manually , it success. GET

http://www.blogger.com/feeds/blogID/posts/full?updated-min=2006-03-16T00:00:00&updated-max=2006-03-24T23:59:59

i notice that the query formate of the Gdata different From the manual http Get Gdata ->

"?updated-min=1999-01-01T00:00:00+02:00&updated-max=2006-08-30T00:00:00+03:00"

Http -> "?updated-min=1990-01-01T00:00:00&updated-max=2006-08-30T23:59:59"