如何在 postman 上获得 Google ID Token?

How do I get Google ID Token on postman?

通过将 Authorizattion Code 设置为授权类型,我能够在 Postman 中获取访问令牌。然而,我真正要寻找的是 ID 令牌。有谁知道如何从邮递员那里得到 Google ID Token?我想使用此 ID 令牌向后端服务器进行身份验证。

Id 令牌用于打开 Id 连接或登录。

获得 Id 令牌所需要做的就是传递配置文件的范围,然后 google 将 return 一个 id 令牌

{
  "access_token": "[Redacted]", 
  "id_token": "[Redacted]", 
  "expires_in": 3599, 
  "token_type": "Bearer", 
  "scope": "https://www.googleapis.com/auth/userinfo.profile", 
  "refresh_token": "[Redacted]"
}