我如何解决“需要验证码”问题适用于 .NET 的 Google Apps API Ver 2 中出现错误?
我正在将通讯录迁移到 Google Apps。
但在迁移大约 300 个联系人后,我遇到了“需要验证码”异常 在行:
Uri feedUri = new Uri(ContactsQuery.CreateContactsUri(UserName)); ContactEntry 创建的Entry = (ContactEntry)service.Insert(feedUri, ContactEntry[0]);
我正在使用 Google API Ver2。 我该如何解决这个问题?
注意:我没有使用网络应用程序。
谢谢
I am migrating Contacts to Google Apps.
But after migrating around 300 contacts I am getting "Captcha Required" Exception
at line :
Uri feedUri = new Uri(ContactsQuery.CreateContactsUri(UserName));
ContactEntry createdEntry = (ContactEntry)service.Insert(feedUri, ContactEntry[0]);
I am using Ver2 of Google API.
How can i solve this issue ?
Note : I am not using web application.
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
今天早上的lashdot 包含一篇关于Google 的reCaptha 被破坏的文章。我想你可以用它。
This morning's slashdot included an article about Google's reCaptha being broken. I suppose you could use that.
我认为这是谷歌用来避免过多机器人使用其 API 服务的速率限制“功能”。一旦超过某个阈值,即使使用 api,谷歌也会开始要求验证码。在您的请求之间留出一些时间,或者稍后再尝试。
I think it is a rate-limiting "feature" that google uses to avoid excessive bots using their api services. Once you go over some threshold, google begins asking for the captcha, even when using the api. Put some time in between your requests or try more a bit later.