How can I use the Google Spreadsheet API for Go?

I need to be able to read and write data to a spreadsheet. I am programming in Go on the Google App Engine.

+7
source share
2 answers

It has been a long time since this question was asked and answered. The interaction with Google Sheets from golang is much better.

Currently, the "Google Apps Script Application API" offers the widest access. Get started here: https://developers.google.com/apps-script/guides/rest/quickstart/go

+2
source

Unfortunately, there is no supported GData client library for Go. Google Code has a project called gdata-go-client , but its support for Docs is not implemented . This functionality should be migrated from another existing client library, for example. from Java or . NET

+2
source

All Articles