How do I enable permissions to FormApp?
I am creating a Google Apps script in which I want to use the FormApp
service to get the active form, however it keeps throwing an exception:
You do not have permission to call FormApp.getActiveForm. Required permissions:
(https://www.googleapis.com/auth/forms.currentonly ||
https://www.googleapis.com/auth/forms) (line 7, file "Code")
I have enabled permissions to both Google Drive API, and to Google Sheets API - but can't find an API labeled as "Forms" anywhere in the Google Cloud Platform API Dashboard.
Googling has not turned up anything useful, just more links to the API documentation.
Any idea which API FormApp is classified under?
I don't want to have to enable every single API to find out...

add a comment |
I am creating a Google Apps script in which I want to use the FormApp
service to get the active form, however it keeps throwing an exception:
You do not have permission to call FormApp.getActiveForm. Required permissions:
(https://www.googleapis.com/auth/forms.currentonly ||
https://www.googleapis.com/auth/forms) (line 7, file "Code")
I have enabled permissions to both Google Drive API, and to Google Sheets API - but can't find an API labeled as "Forms" anywhere in the Google Cloud Platform API Dashboard.
Googling has not turned up anything useful, just more links to the API documentation.
Any idea which API FormApp is classified under?
I don't want to have to enable every single API to find out...

There is no API for Google Forms. So, you don't need to enable anything in the Cloud Platform. You either need to run the code from the code editor to force a new authorization prompt, or if you are setting scopes manually in the appsscript.json file, you need to add a scope.
– Sandy Good
Nov 19 '18 at 14:54
You don't need to activate any api. 1. When it first runs, it'll ask for authorization, Did you accept? 2. Did you modifyappsscript.json
file?
– TheMaster
Nov 19 '18 at 14:54
Ah I did not know that. I added the scopes manually and that fixed it. Will update with an answer.
– Vidur
Nov 19 '18 at 15:22
add a comment |
I am creating a Google Apps script in which I want to use the FormApp
service to get the active form, however it keeps throwing an exception:
You do not have permission to call FormApp.getActiveForm. Required permissions:
(https://www.googleapis.com/auth/forms.currentonly ||
https://www.googleapis.com/auth/forms) (line 7, file "Code")
I have enabled permissions to both Google Drive API, and to Google Sheets API - but can't find an API labeled as "Forms" anywhere in the Google Cloud Platform API Dashboard.
Googling has not turned up anything useful, just more links to the API documentation.
Any idea which API FormApp is classified under?
I don't want to have to enable every single API to find out...

I am creating a Google Apps script in which I want to use the FormApp
service to get the active form, however it keeps throwing an exception:
You do not have permission to call FormApp.getActiveForm. Required permissions:
(https://www.googleapis.com/auth/forms.currentonly ||
https://www.googleapis.com/auth/forms) (line 7, file "Code")
I have enabled permissions to both Google Drive API, and to Google Sheets API - but can't find an API labeled as "Forms" anywhere in the Google Cloud Platform API Dashboard.
Googling has not turned up anything useful, just more links to the API documentation.
Any idea which API FormApp is classified under?
I don't want to have to enable every single API to find out...


asked Nov 19 '18 at 14:44
Vidur
6451026
6451026
There is no API for Google Forms. So, you don't need to enable anything in the Cloud Platform. You either need to run the code from the code editor to force a new authorization prompt, or if you are setting scopes manually in the appsscript.json file, you need to add a scope.
– Sandy Good
Nov 19 '18 at 14:54
You don't need to activate any api. 1. When it first runs, it'll ask for authorization, Did you accept? 2. Did you modifyappsscript.json
file?
– TheMaster
Nov 19 '18 at 14:54
Ah I did not know that. I added the scopes manually and that fixed it. Will update with an answer.
– Vidur
Nov 19 '18 at 15:22
add a comment |
There is no API for Google Forms. So, you don't need to enable anything in the Cloud Platform. You either need to run the code from the code editor to force a new authorization prompt, or if you are setting scopes manually in the appsscript.json file, you need to add a scope.
– Sandy Good
Nov 19 '18 at 14:54
You don't need to activate any api. 1. When it first runs, it'll ask for authorization, Did you accept? 2. Did you modifyappsscript.json
file?
– TheMaster
Nov 19 '18 at 14:54
Ah I did not know that. I added the scopes manually and that fixed it. Will update with an answer.
– Vidur
Nov 19 '18 at 15:22
There is no API for Google Forms. So, you don't need to enable anything in the Cloud Platform. You either need to run the code from the code editor to force a new authorization prompt, or if you are setting scopes manually in the appsscript.json file, you need to add a scope.
– Sandy Good
Nov 19 '18 at 14:54
There is no API for Google Forms. So, you don't need to enable anything in the Cloud Platform. You either need to run the code from the code editor to force a new authorization prompt, or if you are setting scopes manually in the appsscript.json file, you need to add a scope.
– Sandy Good
Nov 19 '18 at 14:54
You don't need to activate any api. 1. When it first runs, it'll ask for authorization, Did you accept? 2. Did you modify
appsscript.json
file?– TheMaster
Nov 19 '18 at 14:54
You don't need to activate any api. 1. When it first runs, it'll ask for authorization, Did you accept? 2. Did you modify
appsscript.json
file?– TheMaster
Nov 19 '18 at 14:54
Ah I did not know that. I added the scopes manually and that fixed it. Will update with an answer.
– Vidur
Nov 19 '18 at 15:22
Ah I did not know that. I added the scopes manually and that fixed it. Will update with an answer.
– Vidur
Nov 19 '18 at 15:22
add a comment |
1 Answer
1
active
oldest
votes
For future people who come across this post, I resolved my issue by manually adding the following to my Manifest file:
"oauthScopes": [
"https://www.googleapis.com/auth/forms",
"https://www.googleapis.com/auth/spreadsheets"
],
You can find your Manifest file by clicking on View > Show Manifest File
- this will make a file called appscript.json
appear in your sidebar.
Then click Run
or the play button in the toolbar - which will force the app to review permissions and prompt you to authorize with your account.
Note: A good point that @tehhowch has pointed out below is that adding this manually to your manifest will disable auto-detection of scopes. My auto-detection doesn't seem to be working correctly anyway, so I've gone ahead with this manual solution - just a word of warning.
2
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
How about putting the comment of// FormApp.getActiveForm()
in your script? By this, the scope ofhttps://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.
– Tanaike
Nov 19 '18 at 22:32
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53377027%2fhow-do-i-enable-permissions-to-formapp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For future people who come across this post, I resolved my issue by manually adding the following to my Manifest file:
"oauthScopes": [
"https://www.googleapis.com/auth/forms",
"https://www.googleapis.com/auth/spreadsheets"
],
You can find your Manifest file by clicking on View > Show Manifest File
- this will make a file called appscript.json
appear in your sidebar.
Then click Run
or the play button in the toolbar - which will force the app to review permissions and prompt you to authorize with your account.
Note: A good point that @tehhowch has pointed out below is that adding this manually to your manifest will disable auto-detection of scopes. My auto-detection doesn't seem to be working correctly anyway, so I've gone ahead with this manual solution - just a word of warning.
2
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
How about putting the comment of// FormApp.getActiveForm()
in your script? By this, the scope ofhttps://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.
– Tanaike
Nov 19 '18 at 22:32
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
add a comment |
For future people who come across this post, I resolved my issue by manually adding the following to my Manifest file:
"oauthScopes": [
"https://www.googleapis.com/auth/forms",
"https://www.googleapis.com/auth/spreadsheets"
],
You can find your Manifest file by clicking on View > Show Manifest File
- this will make a file called appscript.json
appear in your sidebar.
Then click Run
or the play button in the toolbar - which will force the app to review permissions and prompt you to authorize with your account.
Note: A good point that @tehhowch has pointed out below is that adding this manually to your manifest will disable auto-detection of scopes. My auto-detection doesn't seem to be working correctly anyway, so I've gone ahead with this manual solution - just a word of warning.
2
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
How about putting the comment of// FormApp.getActiveForm()
in your script? By this, the scope ofhttps://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.
– Tanaike
Nov 19 '18 at 22:32
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
add a comment |
For future people who come across this post, I resolved my issue by manually adding the following to my Manifest file:
"oauthScopes": [
"https://www.googleapis.com/auth/forms",
"https://www.googleapis.com/auth/spreadsheets"
],
You can find your Manifest file by clicking on View > Show Manifest File
- this will make a file called appscript.json
appear in your sidebar.
Then click Run
or the play button in the toolbar - which will force the app to review permissions and prompt you to authorize with your account.
Note: A good point that @tehhowch has pointed out below is that adding this manually to your manifest will disable auto-detection of scopes. My auto-detection doesn't seem to be working correctly anyway, so I've gone ahead with this manual solution - just a word of warning.
For future people who come across this post, I resolved my issue by manually adding the following to my Manifest file:
"oauthScopes": [
"https://www.googleapis.com/auth/forms",
"https://www.googleapis.com/auth/spreadsheets"
],
You can find your Manifest file by clicking on View > Show Manifest File
- this will make a file called appscript.json
appear in your sidebar.
Then click Run
or the play button in the toolbar - which will force the app to review permissions and prompt you to authorize with your account.
Note: A good point that @tehhowch has pointed out below is that adding this manually to your manifest will disable auto-detection of scopes. My auto-detection doesn't seem to be working correctly anyway, so I've gone ahead with this manual solution - just a word of warning.
edited Nov 21 '18 at 9:24
answered Nov 19 '18 at 15:25
Vidur
6451026
6451026
2
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
How about putting the comment of// FormApp.getActiveForm()
in your script? By this, the scope ofhttps://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.
– Tanaike
Nov 19 '18 at 22:32
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
add a comment |
2
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
How about putting the comment of// FormApp.getActiveForm()
in your script? By this, the scope ofhttps://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.
– Tanaike
Nov 19 '18 at 22:32
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
2
2
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
Note that specifying any OAuth scopes manually disables automatic scope detection. Any new scopes you need will similarly need to be added manually once you specify any manual scopes.
– tehhowch
Nov 19 '18 at 16:05
How about putting the comment of
// FormApp.getActiveForm()
in your script? By this, the scope of https://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.– Tanaike
Nov 19 '18 at 22:32
How about putting the comment of
// FormApp.getActiveForm()
in your script? By this, the scope of https://www.googleapis.com/auth/forms
is added by the automatic detection of the script editor. In this case, the automatic detection of the script editor is not disabled.– Tanaike
Nov 19 '18 at 22:32
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Tanaike hmm I tried that in a brand new project - but it does not seem to work for me as you describe... not sure why
– Vidur
Nov 21 '18 at 9:23
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
@Vidur I'm really sorry my comment was not useful for your situation.
– Tanaike
Nov 21 '18 at 23:17
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
No worries. Not a problem. Have already wrapped up the project that I needed the code for.
– Vidur
Nov 22 '18 at 4:11
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53377027%2fhow-do-i-enable-permissions-to-formapp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There is no API for Google Forms. So, you don't need to enable anything in the Cloud Platform. You either need to run the code from the code editor to force a new authorization prompt, or if you are setting scopes manually in the appsscript.json file, you need to add a scope.
– Sandy Good
Nov 19 '18 at 14:54
You don't need to activate any api. 1. When it first runs, it'll ask for authorization, Did you accept? 2. Did you modify
appsscript.json
file?– TheMaster
Nov 19 '18 at 14:54
Ah I did not know that. I added the scopes manually and that fixed it. Will update with an answer.
– Vidur
Nov 19 '18 at 15:22