Import JSON data into Google Sheets

前端 未结 4 1358
北荒
北荒 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 06:06

    Use this gist : https://gist.github.com/varun-raj/5350595a730a62ca1954

    Replace

    http://example.com/feeds?type=json
    

    with your JSON url

    Add your entities here

    rows.push([data.id, data.name,data.email]);
    

提交回复
热议问题