C2DM 上的验证码

发布于 2024-10-26 06:36:03 字数 243 浏览 1 评论 0原文

我一直在实现 Google 的 c2dm 的服务器端。

我从 https://www.google.com/accounts/ClientLogin .我收到了 403 验证码挑战。这是 api 指定的,但 api 进一步指定应向当前用户显示验证码。

当代码基于服务器时,您应该如何转发验证码?

I've been implementing the server side of Google's c2dm.

I have a problem when requesting the ClientToken from https://www.google.com/accounts/ClientLogin . I'm returned a 403 Captcha Challenge. This is as the api specifies, but it then the api further specifies that the Captcha should be shown to the current user.

How are you supposed to forward the Captcha, when the code is server based?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩耳倾听 2024-11-02 06:36:03

您收到 403 Captcha 的原因是因为您过于频繁地发送 Auth 请求,最好让客户端进行一次身份验证并永久存储 Authcode,并使用该单个 Authcode 直到捕获 INVALID_SENDER 错误,然后进行身份验证再次更新旧的授权码,

the reason you got the 403 Captcha is because you have sent the Auth request too frequently, it is better if you do the client authenticate once and store the Authcode persistently, and use that single Authcode until you catch the INVALID_SENDER error, then, just authenticate again and update the old Authcode,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文