API 速率限制是否将 javascript 请求视为来自域的 IP 还是用户的 IP?
API 具有基于特定 IP 地址的点击次数的速率限制。
我的请求是 AJAX - 所以它们是由页面上某处的 JavaScript 执行的。
被速率限制的 IP 是否显示为客户端的或站点的?
An API has a rate limit based upon the number of hits from a certain IP address.
My requests are AJAX - so they're performed by a javascript living somewhere on a page.
Does the IP being rate limited appear as the client's or the site's?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于 javascript 是在客户端(也称为浏览器中)执行的,因此请求将显示客户端的 IP(或任何代理)。
Since javascript is executed client side (aka in the browser) the request will show the client's IP (or any proxy).
服务提供商可以看到的 IP 地址将是客户端(Web 浏览器)地址。
但这不一定是用于限制的。 这也可以通过 API 密钥或用户帐户来完成。 检查您的服务协议。
The IP address the service provider can see would be the client (web browser) address.
But this is not necessarily what is being used for limiting. That could also be done by the API key or user account. Check your service agreements.