Hello. I'm new on this, I have a database with lats and longs, so I need to extract the data from the database and put in the spreadsheet. How do I do this? I've been reading this: http://code.google.com/intl/es-ES/apis/spreadsheets/data/3.0/developers_guide.html#UpdatingCells "How to change contents in a cell" I believe this is a XML code.
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gs="http://schemas.google.com/spreadsheets/2006"> <id>https://spreadsheets.google.com/feeds/cells/key/worksheetId/private/full/R2C4</id> <link rel="edit" type="application/atom+xml" href="https://spreadsheets.google.com/feeds/cells/key/worksheetId/private/full/R2C4"/> <gs:cell row="2" col="4" inputValue="300"/> </entry> I used google oauth playground and it works! Literally the PUT action works, but my question is: "How do I "run" the XML and make the entry in the spreadsheet
