Hello! I am retrieving worksheet-based feed following documentation here http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#RetrievingWorksheetFeeds The result that I am getting is ALMOST as described in documentation but not exactly. For example, documentation says that there will be
<link> element with rel="http://schemas.google.com/spreadsheets/2006#listfeed" from which I can get worksheetId, but it is not present in the feed that I am getting. Actually, there are many alternative ways to get worksheetId and currently I am using <link> with rel="http://schemas.google.com/spreadsheets/2006#cellsfeed" but I am worried that my code might not work with other spreadsheet or account or machine, etc. There are several other places where response elements described in documentation actually look differently in responses I am getting or not present at all. Also, documentation here http://code.google.com/apis/spreadsheets/data/3.0/developers_guide.html#CreatingListRows is not clear for me. First it says to use POST URL found in the list feed's <link> element that has rel="http://schemas.google.com/g/2005#post". But later it says to send the request to the POST URL: https://spreadsheets.google.com/feeds/list/key/worksheetId/private/full. I am using later way because that URL looks like https://spreadsheets.google.com/feeds/worksheets/key/private/full so I don't understand how worksheet will be specified in this way... Can anyone to clarify the picture? Thank you!
