Import JSON data into Google Sheets

前端 未结 4 1356
北荒
北荒 2021-01-30 05:50

I am pulling data from a web service and it is formatted as JSON. I am writing a Google Apps Script for Google Sheets that will populate the data for me. My problem is, I can\'t

4条回答
  •  时光说笑
    2021-01-30 05:54

    Apps script is (pretty much) just Javascript; plain-old JSON.parse is your best option for parsing JSON into an object representation.

    You can also use JSON.stringify to serialize an object into a string representation.

提交回复
热议问题