いつも調べるので、メモ
とりあえず↓これみとけ
↓をブラウザで開く
https://accounts.google.com/o/oauth2/auth?client_id=[クライアントID]&redirect_uri=http://localhost:3000&scope=[スコープ]&response_type=code&access_type=offline
※スコープが複数ある場合はスペース区切り
↓をcurl
上でリダイレクトされたクエリーパラメータのcodeをURLデコードして
curl -d client_id=[クライアントID] -d client_secret=[クライアントシークレット] -d redirect_uri=http://localhost:3000 -d grant_type=authorization_code -d code=[上で取得できたcode] https://accounts.google.com/o/oauth2/token