I've found many examples in lots of various programming code, but none
in classic ASP.  Admittedly, that's typewritter technology, but
sometimes I have to use it.

I can _read_ from my Google Spreadsheets no problem, but writting gets
me a 400 Bad Request.  I'm clearly missing something simple.  I'm
using the Post URL =http://spreadsheets.google.com/feeds/list/(key)/
od6/private/full.

Suggestions? And why isn't there an ASP example set?  I could use it
on my abacus...

--Mark


        addrow =   "<entry xmlns:atom='http://www.w3.org/2005/Atom' " &
_               
"xmlns:gsx='http://schemas.google.com/spreadsheets/2006/extended' /
>" & _
        "<gsx:name>John</gsx:name>" & _
        "<gsx:state>AZ</gsx:state>" & _
        "</entry>"

        objWinHttp.Open "POST", Posturl, false
        'objWinHttp.SetRequestHeader "CONTENT-TYPE","application/atom+xml"
        objWinHttp.SetRequestHeader "Authorization", "GoogleLogin auth=" &
AuthToken
        objWinHttp.Send addrow
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Docs Data APIs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Docs-Data-APIs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to