Nie próbowałem tego, ale myślę, że Google Script może ci w tym pomóc. Znajdź ten link, aby programowo utworzyć formularze Google.
https://developers.google.com/apps-script/reference/forms/
Ta usługa umożliwia skryptom tworzenie, uzyskiwanie dostępu i modyfikowanie Formularzy Google.
// Create a new form, then add a checkbox question, a multiple choice question,
// a page break, then a date question and a grid of questions.
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('When were you born?');
form.addGridItem()
.setTitle('Rate your interests')
.setRows(['Cars', 'Computers', 'Celebrities'])
.setColumns(['Boring', 'So-so', 'Interesting']);
Logger.log('Published URL: ' + form.getPublishedUrl());
Logger.log('Editor URL: ' + form.getEditUrl());
Dzięki Google Script możesz uzyskać dostęp do identyfikatora zalogowanego użytkownika za pomocą:
// Log the email address of the person running the script.
Logger.log(Session.getActiveUser().getEmail());
Łącząc te dwie funkcje, można dodawać pytania według użytkowników. Mam nadzieję, że to może ci pomóc. Zmienię ten wpis z odpowiednim kodem, jeśli będę miał czas.