Google スプレッドシートを curl で読む
1634 ワード
go_read.sh
#
ACCESS_TOKEN="******"
SPREADSHEET_ID="*****"
URL="https://sheets.googleapis.com/v4/spreadsheets/"
#
curl -H "Authorization: OAuth "$ACCESS_TOKEN \
-X GET \
$URL$SPREADSHEET_ID/values/Sheet1!A1:E1
実行結果
$ ./go_read.sh
{
"range": "Sheet1!A1:E1",
"majorDimension": "ROWS",
"values": [
[
"t2001",
"小山",
"71345",
"FALSE",
"2017-3-15"
]
]
}
アクセストークンの作成方法はこちら
Google スプレッドシートを curl で扱う
Author And Source
この問題について(Google スプレッドシートを curl で読む), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/83f225b08bc4ee9739aa著者帰属:元の著者の情報は、元の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 .