This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
type task struct { | |
url string | |
result chan string | |
} | |
func main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require("fs"); | |
var readline = require("readline"); | |
var gapi = require("googleapis"); | |
var CLIENT_ID = "Your client id here"; | |
var CLIENT_SECRET = "Your client secert here"; | |
var REDIRECT_URL = "Your redirect url here"; | |
var SCOPE = "https://spreadsheets.google.com/feeds"; | |
var TOKENS_FILEPATH = "./tokens.json"; |
NewerOlder