0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

APIを使ってスプレットシートのデータを取得する方法

Posted at

自分のスプレットシートに書いてあるデータをブラウザに表示させる方法をやってみたので、整理する為に書いてみました。

#準備するもの
必要なもの

・Google Cloud Platformのアカウント作成
・APIkey もしくは OAuth tokenの取得
.スプレットシート

##Google Cloud Platformプロジェクト作成から認証情報の取得
1.Google Cloud Platformに行く
2.Google アカウントでログイン
3.Google Cloud Platformでプロジェクトを作成する
4.Google Sheet APIの有効化する
5.認証情報の作成

自分が参考にしたサイトを貼っておきます。
下のURLは4.までやれば充分です。
Sheets API を使ってPHPでGoogle スプレッドシートにデータを保存する

##APIkeyの作成
1.Google Cloud Platform
2.左側にある APIとサービス > 「認証情報」を選択する
3.認証情報を作成 > APIキー 
4.キーを制限する > Google Sheets API を選択する(ここはしなくても利用は出来ます。)

##最後に
以下の{}内の部分に値を入力してあげると表示されます。
GET https://sheets.googleapis.com/v4/spreadsheets/{spreadsheetId}/values/{開始Cell}:{終了Cell}?key={API キー}

###参考
Google Sheet APIを試す時に詰まったところ
Sheets API を使ってPHPでGoogle スプレッドシートにデータを保存する

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?