I have some code that was working some time ago but recently stopped
working. It's on Blogger beta.
I am retrieving the list of blogs of a user by doing an authenticated
GET on:
http://beta.blogger.com/feeds/default/blogs
...The result is a list of blogs having as their post uri:
http://www.blogger.com/feeds/<blogid>/posts/default
(this is also the uri that appears in the header of the blog, with
title="service.post")
To publish a new post, I do a POST on this uri, sending an Atom entry.
Instead of getting a 201 (new resource created), I'm getting a 200 with
the full feed of the blog. The new post is not created.
What am I doing wrong? Even if the ATOM entry or the authentication is
invalid, I think I should get an error message rather than the full
feed with a 200 return code.