AppEngine 获取传入请求的 HOST
我有一个 API,想检查我是否只处理来自某些主机的请求,使用 self.request.host 总是带回当前的 API 主机,而不是请求 URL 的主机...有什么想法吗?
谢谢
I have an API and would like to check that I only process requests from certain hosts, using self.request.host always brings back the current API host, not the requesting URL's host...any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Request
对象有一个名为remote_addr
的属性,它应该为您提供请求来源的 IP 地址。请参阅文档。The
Request
object has a property calledremote_addr
that should give you IP address of the origin of the request. See the docs.你的意思是推荐人吗?
Do you mean referer?