75 questions
0
votes
1
answer
72
views
Google Forms Script
I need help with a javascript code for randomizing sections (not just questions) in Google Forms. I have a code on what I want to do but it keeps telling me there is not enough sections found despite ...
0
votes
0
answers
23
views
How to Implement a Form Watcher for External Users in Google Forms?
I need to implement live notifications when respondents fill out a Google Form. While Google Script Triggers would typically work, they are limited to 10 triggers per user, which is not sufficient for ...
0
votes
0
answers
75
views
Unable to Manage Google Forms Settings via API (Start/Stop Responses, Limit to 1 Response, etc.)
I’ve tried everything, including checking Google Docs, but I still can’t find the setting option through the API. Specifically, I’m creating a custom Google Form using the Google Forms API.
I’ve ...
0
votes
1
answer
58
views
implement a Go to section based on answer rule in a JSON payload
{
"requests": [
{
"createItem": {
"item": {
"title": "Email",
"...
0
votes
1
answer
182
views
How to fetch google form response with required email in Google App Script
As the title, I got some problem when trying to automate response google forms type collect submitter data but I am not the form's owner
Here is the form:
Sample Form
Below is my scratch code in GAS:
...
0
votes
1
answer
41
views
Google Forms API raises google.auth.exceptions.RefreshError: 'No access token in response.'
I want to create a grading bot for my community's applications through Google Forms and when I try to retrieve a form, I get a RefreshError.
Minimal Reproducible Example:
# Google Credentials
from ...
1
vote
1
answer
202
views
Google Forms API - How to retrieve a form
I'm trying to make a summary on responses for a Google Form. For that I use Google Forms API in Golang. I didn't find the Question text in the responses, just the QuestionId. So I decided to get the ...
0
votes
1
answer
69
views
Dropdown fields in GForms using AppScript
I'm trying to control my GForms using AppScript and would like to delete and fill the dropdown fields using a script. I've written the following scripts for this and stored them in the GForms file. ...
0
votes
1
answer
140
views
Unable to share google form created through google forms api
I am in the process of creating a google form through the google form API.
These are the steps I have taken:
I created a project here: https://console.cloud.google.com/apis/credentials/consent?...
0
votes
1
answer
50
views
In google forms API, is there a limited number of items allowed per batch update?
I'm using google forms to display pictures I have available for sale. What I'm doing is sending the pictures using the google forms API batchUpdate method:
https://developers.google.com/forms/api/...
-1
votes
1
answer
124
views
Script to manipulate Google Form data
I have a Google Form that outputs responses to a Google Sheet. I would like to learn how to write a script that manipulates the data before saving the response to the sheet.
Basically, I have a few ...
1
vote
1
answer
55
views
Why am i getting a HttpError 'A Location is required error'
I am trying to run some code to update a few of the question titles in a form that I am creating. I am running the code below and receiving the error: 'A location is required'. I have tried to look at ...
1
vote
1
answer
75
views
How to delete Questions from an already existing google form using API & Python
I have connect to the google form API using python. I was able to create a form with the questions I want. I am now trying to delete certain questions that have the word "Location" in the ...
0
votes
0
answers
100
views
GCP service-to-service OAuth workaround Cloud Run to Google Forms API
I am hoping to authorise my Cloud Run app (NodeJS + Express + Axios) to be able to Read Google Forms Responses for a handful of Google Forms that I use. The Cloud Run App is to act as an API that ...
1
vote
1
answer
193
views
Regex expression not working on Google Form
I'm trying to use a TextValidationBuilder to validate input on a Google Form. I'm doing some tests and I have no idea why the regex isn't working. When I test the regex here it works fine.
I want to ...