我正在尝试删除存档的课程,但它给了我一个错误。该班级有一个用户,但是当我进入班级时,没有显示任何学生。我已向 API 发出请求,结果是类中存在用户。
GET https://classroom.googleapis.com/v1/courses/365060561/students?key={YOUR_API_KEY}
"students": [
{
"courseId": "365060561",
"userId": "112081802784063363282",
"profile": {
"id": "112081802784063363282",
"name": {
"fullName": "Unknown user"
},
}
}
]
但是如果我寻找这个用户的信息,结果是它不存在。
GET https://www.googleapis.com/admin/directory/v1/users/112081802784063363282?key={YOUR_API_KEY}
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "Resource Not Found: userKey"
}
],
"code": 404,
"message": "Resource Not Found: userKey"
}
我怎样才能删除这个类?
谢谢你。