我对这类东西很陌生,我花了一整天时间试图找出如何使用Sheets API将数据发布到单元格...
Sheets API - Change contents of a cell
上述文档要求我创建一个包含相关数据的条目元素(将key
,worksheetId
和cell
替换为适当的值。我已将Content-Type
设置为application/atom+xml
。我的代码如下......
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gs="http://schemas.google.com/spreadsheets/2006">
<id>https://spreadsheets.google.com/feeds/cells/MY_KEY/od6/public/full/R2C2</id>
<link rel="edit" type="application/atom+xml" href="https://spreadsheets.google.com/feeds/cells/MY_KEY/od6/public/full/R2C2"/>
<gs:cell row="2" col="2" inputValue="35"/>
</entry>
使用邮递员,我可以GET
来自电子表格的数据,但是当我尝试PUT
我获得的数据时
“Google云端硬盘 - 未找到网页”。
任何想法我做错了什么?
谢谢!