我需要能够经常创建新的电子邮件地址,但在登录Gmail帐户时,系统会提示我验证您的帐户窗口。这是我想要实现的目标的障碍。有没有办法绕过这个窗口,所以用户可以立即访问那里的电子邮件。
我正在通过API创建电子邮件帐户,我正在设置suspend property = false。
但是,在发布到API并且设置suspend属性= true并且设置了suspensionReason = WEB_LOGIN_REQUIRED时,它没有承认这一点?
这就是我要插入的内容。
UsersResource.InsertRequest newUser = Service.Users.Insert(new User
{
PrimaryEmail = user.PrimaryEmail,
Name = new UserName()
{
FamilyName = user.FamilyName,
FullName = user.FirstName,
GivenName = user.GivenName
},
Password = user.Password,
Suspended = false,
SuspensionReason = String.Empty,
IsAdmin = true,
IsMailboxSetup = true,
AgreedToTerms = true,
IsDelegatedAdmin = true
});
HttpPost on the left HttpResponse on the right
任何帮助都会很棒。