google-playground

How to run Google App Script function from Google OAuth 2.0 Playground | The caller does not have permission

假如想象 提交于 2019-12-07 13:08:22
问题 I have created a new script which creates "Google Form" on my google account. Following is the sample code: function myFunction() { var form = FormApp.create('New Form'); var item = form.addCheckboxItem(); item.setTitle('What condiments would you like on your hot dog?'); item.setChoices([ item.createChoice('Ketchup'), item.createChoice('Mustard'), item.createChoice('Relish') ]); form.addMultipleChoiceItem() .setTitle('Do you prefer cats or dogs?') .setChoiceValues(['Cats','Dogs'])

How to run Google App Script function from Google OAuth 2.0 Playground | The caller does not have permission

谁说胖子不能爱 提交于 2019-12-05 20:03:44
I have created a new script which creates "Google Form" on my google account. Following is the sample code: function myFunction() { var form = FormApp.create('New Form'); var item = form.addCheckboxItem(); item.setTitle('What condiments would you like on your hot dog?'); item.setChoices([ item.createChoice('Ketchup'), item.createChoice('Mustard'), item.createChoice('Relish') ]); form.addMultipleChoiceItem() .setTitle('Do you prefer cats or dogs?') .setChoiceValues(['Cats','Dogs']) .showOtherOption(true); form.addPageBreakItem() .setTitle('Getting to know you'); form.addDateItem() .setTitle(

Google Glass: Developing and testing using PlayGround

﹥>﹥吖頭↗ 提交于 2019-12-05 07:20:44
问题 I am not a person with the Google glass and I am not a person registered glass explorer. It seems like we can't develop for glass at the moment. - https://developers.google.com/glass/quickstart/java Is this is it or is there another way around? I have seen a post from another member, developing a prototype with the playground. He mentioned about "uploading" HTML files to the playground, so, I also need to develop a UI prototype. But I have never seen a way to upload anything to play ground