I would like to build a node.js server and use it to retrieve data of a Google Form, like: title, type, options of questions on that form.
e.g.
If I have a Google Form: http://goo.gl/forms/DSNFS0cfgw
I would like to do somthing like:
var url = "http://goo.gl/forms/DSNFS0cfgw";
var form = getFormData(url);
// 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 a way to do this by using Javascript or any node module?
Aucun commentaire:
Enregistrer un commentaire