12 messages in com.googlegroups.bloggerdevRe: [bloggerDev] Re: Atom API & Blogg...
FromSent OnAttachments
sbswift15 Feb 2005 16:27 
David Stewart15 Feb 2005 17:11 
David Stewart15 Feb 2005 18:29 
eConsultant - Sanjeev Narang15 Feb 2005 19:08 
David Stewart15 Feb 2005 19:11 
sayrer15 Feb 2005 22:43 
steve jenson16 Feb 2005 12:14 
David Stewart16 Feb 2005 22:12 
steve jenson16 Feb 2005 22:36 
mark...@iupload.com02 Mar 2005 19:11 
steve jenson03 Mar 2005 10:48 
JayReding28 Mar 2005 19:57 
Subject:Re: [bloggerDev] Re: Atom API & Blogger (newbie)
From:steve jenson (ste@pobox.com)
Date:02/16/2005 10:36:31 PM
List:com.googlegroups.bloggerdev

I'm trying desperately to release it in next week's build.

-steve

On Feb 16, 2005, at 10:12 PM, David Stewart wrote:

Steve, any idea when this auth system will be in place, even if on a "dogfood" server? I have a simple change to make this transparent to any client of Atomizer, but don't want to release it until I can test it for real.

-----Original Message----- From: steve jenson [mailto:ste@google.com] Sent: Wednesday, February 16, 2005 12:15 PM To: blog@googlegroups.com Subject: [bloggerDev] Re: Atom API & Blogger (newbie)

I think this script would be susceptible to JavaScript's same-origin security policy. IOW, it might look like you're not getting a document back from Blogger.

I owe this list some Blogger Atom API documentation. I have some written; I'll find a public place for it. As I mentioned back in October[*], one major thing will be changing; we won't be supporting WSSE for our API, you will instead just use Http Basic auth over SSL to login.

-steve

[*]: http://www.blogger.com/developers/2004/10/apis-and-ssl.pyra

On Feb 15, 2005, at 10:43 PM, sayrer wrote:

Hi Stephan,

I think see where you're confused. When you say "web form", you mean HTML, right? Other people offered ASP.NET solutions cause there is also something called a "Web Form" in that technology.

By default, web browsers send form variables as name/value pairs that you're familiar with. What you need to is get those form fields into XML for use with the Atom Protocol. You can do this two ways:

1.) Post the form to the server, and have the server convert it to XML and contact blogger. Kind of using the PHP script as a hop.

2.) Use JavaScript to take the form values, convert them to XML, and send them directly to the server. Lucky for you, Mike Davies has already written this code and decided to give it away:

http://www.isolani.co.uk/blog/atom/ JavascriptAtomApiClientUsingXmlHttpRequest

Good luck,