0

我正在使用Google 数据 Python 客户端库将电子邮件导入我的用户帐户。

如果这对主域中的用户工作正常,我会收到一个单独域中的用户的错误。

from gdata.apps.migration import service

user  = "user@example.fr"
admin = "admin@example.com"
admin_pwd = "hackme"

srv = service.MigrationService(email = admin, password = admin_pwd, domain = "example.com")

因此,如果我设置domain为主要的,当我尝试提交批处理时会收到以下错误消息:

gdata.apps.service.AppsForYourDomainException: {'status': 403, 'body': '<HTML>\n<HEAD>\n<TITLE>Authorization failed.  Ensure that the destination user exists and try again.</TITLE>\n</HEAD>\n<BODY BGCOLOR="#FFFFFF" TEXT="#000000">\n<H1>Authorization failed.  Ensure that the destination user exists and try again.</H1>\n<H2>Error 403</H2>\n</BODY>\n</HTML>\n', 'reason': 'Authorization failed.  Ensure that the destination user exists and try again.'}

如果我没有设置域名,我会得到这个:

gdata.apps.service.AppsForYourDomainException: {'status': 403, 'body': '<HTML>\n<HEAD>\n<TITLE>Invalid domain.</TITLE>\n</HEAD>\n<BODY BGCOLOR="#FFFFFF" TEXT="#000000">\n<H1>Invalid domain.</H1>\n<H2>Error 403</H2>\n</BODY>\n</HTML>\n', 'reason': 'Invalid domain.'}

我可以理解为什么会出现这些错误,但问题是:我可以在单独的域中导入用户电子邮件吗?如果是这样,怎么做?

4

1 回答 1

0

首先,您确实应该为此使用新的电子邮件迁移 APIgoogle-api-python-client,而不是使用旧的和已弃用的基于 GData 的 API

话虽如此,只需将域值设置为您希望将邮件迁移到的用户邮箱而不是管理域:

user  = "user@example.fr"
admin = "admin@example.com"
admin_pwd = "hackme"

srv = service.MigrationService(email = admin, password = admin_pwd, domain = "example.fr")
于 2013-09-09T16:16:15.103 回答