node.js - Is there a way to retrieve data of a Google Form ITSELF (not spreadsheet) using Javascript? -


i build node.js server , use retrieve data of google form, like: title, type, options of questions on form.

e.g.

if have google form: http://goo.gl/forms/dsnfs0cfgw

i somthing like:

var form = getformdata();  // returns  // [ //   {title: "name", type: "text", options:[]}, //   {title: "favorite season", type: "select", options:["spring", "summer", "autumn", "winter"]}, //   {title: "favorite fruit", type: "radio", options:["apple", "banana"]} // ] 

is there way using javascript or node module?

i don't see lot of options aside whipping cheerio , parsing html source.

cheerio looks , feels lot jquery, if you're familiar that, shouldn't have lot of problems.


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -