Google Email Audit API - 为导出错误创建邮箱

问题描述 投票:0回答:1

我们正在尝试从Google请求邮箱下载,我们将请求发送到以下网址:

https://apps-apis.google.com/a/feeds/compliance/audit/mail/export/dev-gpanel.com/andrew

但是,在此之后,我们收到以下错误:

EntityDoesNotExist(1301): [email protected]
    at com.google.gdata.data.appsforyourdomain.AppsForYourDomainException.narrow(AppsForYourDomainException.java:133)
    at com.google.gdata.client.appsforyourdomain.AppsForYourDomainService.insert(AppsForYourDomainService.java:102)
    at com.promevo.beyond.server.impl.AuditServiceImpl.createGmailExport(AuditServiceImpl.java:150)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

用户[email protected]确实存在。

奇怪的是,这实际上是创建请求(因为它在feed中返回以获取所有下载请求)。

有人可以帮忙吗?

google-api google-api-client google-api-java-client google-email-audit-api
1个回答
0
投票

基于此forum,当有另一个使用相同用户名的Google帐户时,会出现EntityDoesNotExist错误。

现在的解决方法显然是手动创建它们,一旦它们在系统中它们将同步好。

我将尝试使用GAM工具通过脚本批量导入它们,因为它应该可以工作(像这样:http://code.google.com/p/google-apps-manager/wiki/BulkOperations)。

您也可以查看此link作为附加参考。

© www.soinside.com 2019 - 2024. All rights reserved.