Check the Google spreadsheets API group-- specific questions like these are being answered there. Your POST request should be working-- Can you paste your headers and message? There seem to be issues with PUT requests, however. Another person and I have been posting about that.
Here's an example of a successful POST (adding a cell): send: u'PUT /feeds/cells/o03712292828507838454.8484183085323454070/od6/private/full HTTP/1.1\r\nHost: spreadsheets.google.com\r\nAccept-Encoding: identity\r\nUser-Agent: mine\r\nAuthorization: GoogleLogin auth=Ddfssdfsdfmyloginauthhasdjahsdljadh\r\nContent-Type: application/atom+xml\r\nContent-Length: 183\r\n\r\n' send: "<?xml version='1.0' ?>\n\t<entry xmlns='http://www.w3.org/2005/Atom'\n\txmlns:gs='http://schemas.google.com/spreadsheets/2006'>\n\t<gs:cell row='10' col='4' inputValue='5000' /> \n\t</entry> " reply: 'HTTP/1.1 400 Bad Request\r\n' header: Content-Type: text/plain; charset=iso-8859-1 header: Cache-control: private header: Content-Length: 20 header: Date: Fri, 01 Dec 2006 23:04:47 GMT header: Server: GFE/1.3 Invalid request URI. Ucompass wrote: > Hello, > > I am trying to write some Perl modules that will leverage the Google > Spreadsheets API. > > I have been successful with all the GET commands, but I haven't been > able to get any of the POST or PUT methods to work, and I think I am > properly forming all my requests. > > For instance, upon trying to update data to an empty cell, I receive > the following HTML: > > <HTML> > <HEAD> > <TITLE>Not Found</TITLE> > </HEAD> > <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> > <H1>Not Found</H1> > <H2>Error 404</H2> > </BODY> > </HTML> > > How can I tell if this is a problem with what I am doing or if this > area is still under development? > > Is anyone else trying to write Perl code that will interact with Google > Spreadsheets? > > Thanks in advance --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Data API" 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-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
