本文介绍了Google.Apis.Requests.RequestError 404-使用Gmail API更改域中用户的签名时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要以G Suite管理员身份通过Gmail.Net客户端库更新域用户的签名。

我按照this示例在Google开发人员控制台中设置并授予权限。

以下是我所做的总结:

  1. 在Google API控制台中启用Gmail API
  2. 已为我的项目创建服务帐户
  3. 已将全域授权委派给服务帐户
  4. 添加了https://www.googleapis.com/auth/gmail.settings.sharinghttps://www.googleapis.com/auth/gmail.settings.basic作用域

我可以更新我自己的电子邮件签名,但当我尝试更新域中任何其他用户的签名时,我收到以下错误:

Google.Apis.Requests.RequestError
Not Found [404]
Errors [
    Message[Not Found] Location[ - ] Reason[notFound] Domain[global]
]

以下是我的代码:

GoogleCredential credential;
using (var stream = new FileStream("signature-gmailapi.json", FileMode.Open, FileAccess.Read))
{
    credential = GoogleCredential.FromStream(stream).CreateScoped(new[]
            {GmailService.Scope.GmailSettingsBasic, GmailService.Scope.GmailSettingsSharing})
        .CreateWithUser("[email protected]");
}
var service = new GmailService(new BaseClientService.Initializer()
    {
        ApplicationName = "Project",
        HttpClientInitializer = credential
    }
);
service.Users.Settings.SendAs.Patch(new SendAs { Signature = "Test signature..."}, "me",
    "[email protected]").Execute();

您能告诉我我做错了什么吗?

推荐答案

若要使用服务帐户更改域用户的签名,您需要使用impersonation

这是通过方法CreateWithUser();

实现的您需要分配给它的参数是用户的电子邮件,而不是管理员的电子邮件。所以:

credential = GoogleCredential.FromStream(stream).CreateScoped(new[]{GmailService.Scope.GmailSettingsBasic, GmailService.Scope.GmailSettingsSharing})
        .CreateWithUser( "[email protected]");

这篇关于Google.Apis.Requests.RequestError 404-使用Gmail API更改域中用户的签名时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 10:13