Re: MetaWeblogAPI and BlogerAPI status
Phillip Pearson <[email protected]> Mon, 12 Jan 2004 17:12:13 +1300
| Newsgroups | gmane.comp.pythin.pyds.devel |
|---|---|
| Message-ID | <[email protected]> |
> One thing I am not really sure about: is postid in geht getPost stuff > allways the number of the posting? Or is it some number that should be > returned by getRecentPosts in the structs of postings? It would really > be helpfull if some of you that still have radio running could make some > tests with the MetaWeblogAPI to check what radio does with stuff like > that. typically in mW-api implementations the postid is a string that includes the blog id and the post number. in radio, it's just the postid - 0000001 etc. in blogger, it's a number, the primary key on their posts sql table, b/c post ids are globally unique over all blogger blogs (i think). in manila, it's something like blogname#postid. the postid that getRecentPosts returns is the same one you use when you call getPost ... cheers, phil