Go での GoogleSpreadsheetAPI の簡単な使い方
概要 GoogleSpreadsheetAPI を Go で使う場合の簡単な紹介。 権限の設定 // ファイルの閲覧のみ許可する config, err := google.ConfigFromJSON(b, "https://www.googleapis.com/auth/spreadsheets.readonly") // 書き込みと読み込みの許可を与える config, err := google.ConfigFromJSON(b, "https://www.googleapis.com/auth/spreadsheets") セルの値を取得...