Skip to content
Advertisement

Request had insufficient authentication scopes error when creating teacher through Google Classroom API

I’m trying to create assignments for students through the google classroom api. However, I’ve learned admins can not do that, only teachers. So in our code, after creating a new course we’re then setting the teacher’s email, which is the same as for the admin. However, the code fails when creating the teacher. It says the request had insufficient authentication scopes. I’ve tried to add different extra scopes but I’m stuck on this error message.

JavaScript

enter image description here

Here is the full code:

JavaScript

Thank you.

UPDATE

As per @DaImTo’answer, adding these two extra profiles fixed the original error. ClassroomScopes.CLASSROOM_PROFILE_EMAILS, ClassroomScopes.CLASSROOM_PROFILE_PHOTOS,

However, we’re still getting a “The caller does not have permission” error message.

Advertisement

Answer

The method corses.create requires that the authorized user must have consented with the following scope.

enter image description here

the method courses.teachers.create requires one of the following scopes

enter image description here

Now if we look at your code you appear to be using the following scopes

JavaScript

which should be enough to ensure that you have access. However you also apear to be using CREDENTIALS_FILE_PATH which is where the users consent will be stored. Now if you ran your application once and requested access of the user and the user consented to it. Then the credetinals for that user would be stored in the file. If you then changed the scopes in your code the code is still reading from CREDENTIALS_FILE_PATH with the old scopes.

You need to force your application to request access of the user again and this time consent to the proper scopes.

There are two ways to do that. Delete the file in CREDENTIALS_FILE_PATH
which contains “user” in its name.

or change “user” to something else in this line of your code.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement