Google 目录 API 将自定义 Schema/Update 添加到每个 google API 的用户(进行中)
Google Directory API add Custom Schema/Update it to Users per google API (in go)
我正在尝试将 CustomSchema 上传到 GSuite 中一家公司的所有用户。此自定义架构包含他们的 Github 用户名,我用 github API.
提取了这些用户名
问题是,运行代码后,Gsuite中的账号没有添加。
相关代码(已建立使用管理员身份验证的 GSuite 连接,地图包含所有用户条目。如果您还需要更多代码,我可以为您提供 - 只是尽量保持简单):
for _, u := range allUsers.Users {
if u.CustomSchemas != nil {
log.Printf("%v", string(u.CustomSchemas["User_Names"]))
}else{
u.CustomSchemas = map[string]googleapi.RawMessage{}
}
nameFromGsuite := u.Name.FullName
if githubLogin, ok := gitHubAccs[nameFromGsuite]; ok {
userSchemaForGithub := GithubAcc{GitHub: githubLogin}
jsonRaw, err := json.Marshal(userSchemaForGithub)
if err != nil {
log.Fatalf("Something went wrong logging: %v", err)
}
u.CustomSchemas["User_Names"] = jsonRaw
adminService.Users.Update(u.Id, u)
} else {
log.Printf("User not found for %v\n", nameFromGsuite)
}
}
这是 json 编码的结构:
type GithubAcc struct {
GitHub string `json:"GitHub"`
}
对于遇到此问题的任何人。
代码片段中的所有内容都是正确的。顺便说一句,我预计 adminService.Users.Update()
实际上会更新用户。相反,它 returns 一个 UserUpdatesCall
.
您需要通过调用 .Do()
来执行该更新
来自 API:
Do executes the "directory.users.update" call.
所以解决办法就是改adminService.Users.Update(u.Id, u)
进入 adminService.Users.Update(u.Id, u).Do()
我正在尝试将 CustomSchema 上传到 GSuite 中一家公司的所有用户。此自定义架构包含他们的 Github 用户名,我用 github API.
提取了这些用户名问题是,运行代码后,Gsuite中的账号没有添加。
相关代码(已建立使用管理员身份验证的 GSuite 连接,地图包含所有用户条目。如果您还需要更多代码,我可以为您提供 - 只是尽量保持简单):
for _, u := range allUsers.Users {
if u.CustomSchemas != nil {
log.Printf("%v", string(u.CustomSchemas["User_Names"]))
}else{
u.CustomSchemas = map[string]googleapi.RawMessage{}
}
nameFromGsuite := u.Name.FullName
if githubLogin, ok := gitHubAccs[nameFromGsuite]; ok {
userSchemaForGithub := GithubAcc{GitHub: githubLogin}
jsonRaw, err := json.Marshal(userSchemaForGithub)
if err != nil {
log.Fatalf("Something went wrong logging: %v", err)
}
u.CustomSchemas["User_Names"] = jsonRaw
adminService.Users.Update(u.Id, u)
} else {
log.Printf("User not found for %v\n", nameFromGsuite)
}
}
这是 json 编码的结构:
type GithubAcc struct {
GitHub string `json:"GitHub"`
}
对于遇到此问题的任何人。
代码片段中的所有内容都是正确的。顺便说一句,我预计 adminService.Users.Update()
实际上会更新用户。相反,它 returns 一个 UserUpdatesCall
.
您需要通过调用 .Do()
来执行该更新
来自 API:
Do executes the "directory.users.update" call.
所以解决办法就是改adminService.Users.Update(u.Id, u)
进入 adminService.Users.Update(u.Id, u).Do()