0

我正在尝试GoogleMailSettingsService通过 C# 代码检索标签,但出现 403 Forbidden 错误。我使用的是管理员用户名/密码,选中了“使用配置 API”选项,并且我们有一个企业帐户。

GoogleMailSettingsService service = new GoogleMailSettingsService(domain, app_name);
service.setUserCredentials(user_name, password);
AppsExtendedFeed labels = service.RetrieveLabels(user_name);
4

1 回答 1

0

我想将此作为评论而不是答案发布。从 Google 提供的文档来看,当收到 403 错误时,您使用的帐户可能不是管理员。 https://developers.google.com/google-apps/help/articles/provisioningoauth

您是否尝试使用超级管理员帐户运行它,看看问题是否仍然存在?

于 2013-02-08T23:44:04.050 回答