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

时间:2017-12-07 16:02:54

标签: google-api google-api-client google-api-java-client google-email-audit-api

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

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

然而,在此之后,我们收到以下错误:

EntityDoesNotExist(1301): andrew@dev-gpanel.com
    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)

用户andrew@dev-gpanel.com确实存在。

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

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

根据此forum,如果某个地方的其他Google帐户已使用相同的用户名,则会出现EntityDoesNotExist错误。

  

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

     

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

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