How can I use Google Spreadsheet API from Go?
I need to be able to read and write data to a spreadsheet. I am programming in the Go Language in Google App Engine.
A lot of time has passed since this question was asked and answered. Interaction with Google Sheets from golang is much better now.
Currently the "Google Apps Script Execution API" offers the broadest access. Get started here: https://developers.google.com/apps-script/guides/rest/quickstart/go
Unfortunately there is not a supported GData client library for Go. There is a project called gdata-go-client on Google Code, but its support for Docs is unimplemented. That functionality would need to be ported from another existing client library, eg from Java or .NET.
链接地址: http://www.djcxy.com/p/62364.html