RailsからGoogleスプレッドシート連携させる際に認証でつまづいた点(2021/10時点)
はじめに
よくあるRailsアプリケーションからGoogleスプレッドシートに連携するのを実装したかったのだが盛大につまづいたのでポイントをメモ
大まかな手順としては以下などを参考にしてください
https://japan.appeon.com/technical/techblog/technicalblog019/
https://techblog.hacomono.jp/entry/2020/10/21/095900
OAuth 同意画面のアプリケーションの種類で「その他」が選択肢にない
「その他」がないなら「ウェブアプリケーション」だろうなぁと思ってたら落とし穴。
承認エラーになります
自分の場合は「デスクトップアプリ」を選択したら承認されるようになりました。
初回認証時に、コンソールに表示される1. Open this page: にアクセスした後、コンソールに 2. Enter the authorization code shown in the page: が表示されない
Railsアプリケーション内で初回認証をしようとしていて発生。
こちらを参考にしました
https://japan.appeon.com/technical/techblog/technicalblog019/
別ディレクトリに以下を置いて
Gemfile
source 'https://rubygems.org'
gem 'google_drive'
require "google_drive"
session = GoogleDrive::Session.from_config("config.json")
# 事前に書き込みたいスプレッドシートを作成しておく
sheets = session.spreadsheet_by_key("xxxxxxxx").worksheets[0]
# スプレッドシートへの書き込み
sheets[1,1] = "hello world!!"
# シートの保存
sheets.save
{
"client_id": "xxxxxxxx.apps.googleusercontent.com",
"client_secret": "xxxxxxxxxxxxxxxxxxxxxxxx"
}
下記コマンドを実行
$ bundle install
$ bundle exec ruby main.rb
コンソールに以下が表示され、認証コードがペーストできるように
2. Enter the authorization code shown in the page:
Author And Source
この問題について(RailsからGoogleスプレッドシート連携させる際に認証でつまづいた点(2021/10時点)), 我々は、より多くの情報をここで見つけました https://qiita.com/cog1t0/items/1f84ba1214475591bf40著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .