我想将数据插入Google电子表格。但是我得到一个“状态”:“未授权”错误。我知道连接是正确的,因为我可以使用Curl从电子表格中获取数据,所以错误可能出在Curl语法中。有人可以帮我吗?
这是我使用的命令
curl -k -o output.txt -X PUT https://sheets.googleapis.com/v4/spreadsheets/$spreadsheet_id/values/Sheet1!A1:D5?key=$apikey -H "Content-Type: application/json" --data-binary @temp.json
谢谢。
output.txt的内容
{
"error": {
"code": 401,
"message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
"status": "UNAUTHENTICATED"
}
}