-
The docs at http://byron.github.io/google-apis-rs/google_sheets4_cli/ show the following options for update-values for sheets4-cli: sheet4 spreadsheets values-update (-r )... [-p ]... [-o ] I have retrieved values from google sheets (using get-values), but I have not been able to figure out how to update cells. I have tried the following,
but only get a 400 error, "bad request" I am sure that the docs could give a CLI example that provides an update value in a complete command line. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Sorry for the late reply. I believe you could use the That would also allow to doctor a curl request which can be manipulated into a request which actually works. From there, maybe it becomes more obvious what the problem is. As I have never used the sheets API, I can't provide more advise. |
Beta Was this translation helpful? Give feedback.
Sorry for the late reply. I believe you could use the
--debug
flag to monitor all communication between client and server (please be aware that this dumps secrets into the terminal). That way one could compare between what is officially documented and the request that gets actually produced.That would also allow to doctor a curl request which can be manipulated into a request which actually works. From there, maybe it becomes more obvious what the problem is.
As I have never used the sheets API, I can't provide more advise.
Good luck!