Rails(Ruby)アプリからスプレッドシートに書き込み
3519 ワード
GCP側のでやること
GCPのコンソール(https://cloud.google.com
)から、
・「Google Drive API」と「Google Sheets API」を有効化
注意:WEBとかiOSとかではなく、「Other」を選ぶ
Rails(Ruby)側
gemを追加
Gemfile
gem 'google_drive'
認証情報を記載するconfig.jsonを作成
touch config.json
config.json
{
"client_id": "xxxxxxx-xxxxxxxxxxxxxxxxx.apps.googleusercontent.com",
"client_secret": "xxxxxxxXXxxxxxxxxxxxxxxxxx"
}
キーからスプレッドシートを取得。スプレッドシートのURLのうち、https://docs.google.com/spreadsheets/d/xxx
このxxxの部分がスプレッドシートのキーになる。
require "google_drive"
session = GoogleDrive::Session.from_config("config.json")
sheet = session.spreadsheet_by_key("xxxxxxxxxxxxxxxxxxxxxxxxxxx").worksheets[0]
# 書き込み
sheet[1,1] = "From API"
sheet.save
実行すると、認証が始まるので表示されるURLに対象アカウントでログインして認証。
書き込まれるかどうか確認
Author And Source
この問題について(Rails(Ruby)アプリからスプレッドシートに書き込み), 我々は、より多くの情報をここで見つけました https://qiita.com/wktq/items/e5ed7d1446554b5df41b著者帰属:元の著者の情報は、元の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 .