我正在使用G-Suite谷歌课堂API,并且试图将学生添加到课程中,我已启用我帐户的所有管理权限,我确保我已在访问令牌中请求了所有必需的范围我得到PERMISSION_DENIED
POST /v1/courses/<courseId>/students HTTP/1.1
Host: classroom.googleapis.com
Content-length: 70
Content-type: application/json
Authorization: Bearer <accessToken>
{
"profile": {
"verifiedTeacher": true,
},
"userId": "studentId"
}
所以我的问题是为什么我仍然收到此错误?如何找到问题的根本原因?