我正在使用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.'}
我可以理解为什么会出现这些错误,但问题是:我可以在单独的域中导入用户电子邮件吗?如果是这样,怎么做?