Google Classroom API - 学生的"emailAddress"和"photoUrl"未收到回复

Pra*_*lla 5 java google-api oauth-2.0 google-classroom

我对学生的课程反应有疑问.

我没有在API调用中获取两个参数(emailAddress和photoUrl)

通过我的代码调用API" https://classroom.googleapis.com/v1/courses/ {courseId}/students" 的URL .

我收到以下回复:

{
  "students": [
    {
      "courseId": "303431573",
      "userId": "104377167089915657872",
      "profile": {
        "id": "104377167089915657872",
        "name": {
          "givenName": "student2",
          "familyName": "User",
          "fullName": "student2 User"
        }
      }
    },
    {
      "courseId": "303431573",
      "userId": "104304056850029354748",
      "profile": {
        "id": "104304056850029354748",
        "name": {
          "givenName": "student1",
          "familyName": "User",
          "fullName": "student1 User"
        }
      }
    }
  ]
}
Run Code Online (Sandbox Code Playgroud)

但是,当我通过传递相同的courseId在Google Classroom的开发者控制台中执行它时,我得到如下响应:

{
 "students": [
  {
   "courseId": "303431573",
   "userId": "104377167089915657872",
   "profile": {
    "id": "104377167089915657872",
    "name": {
     "givenName": "student2",
     "familyName": "User",
     "fullName": "student2 User"
    },
    "emailAddress": "student2_rvnqrmpxeraft-mcygui@classroom-dev.com",
    "photoUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg"
   }
  },
  {
   "courseId": "303431573",
   "userId": "104304056850029354748",
   "profile": {
    "id": "104304056850029354748",
    "name": {
     "givenName": "student1",
     "familyName": "User",
     "fullName": "student1 User"
    },
    *"emailAddress": "student1_kb5ysml_yw4l2ecbu581@classroom-dev.com",
    "photoUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg"*
   }
  }
 ]
}
Run Code Online (Sandbox Code Playgroud)

小智 2

Praveen - 要访问 emailAddress 和 photoURL,您需要请求以下附加 OAuth 范围:

  • https://www.googleapis.com/auth/classroom.profile.photos
  • https://www.googleapis.com/auth/classroom.profile.emails

查看https://developers.google.com/classroom/guides/auth了解更多详细信息。