如何在没有 JavaScript 的情况下记录用户通过赞助商链接的点击
我正在用java开发网站。
网站包含一些文本和赞助链接。
我需要在没有 JavaScript 的情况下跟踪用户点击赞助商链接。
怎样才能做到这一点呢?
PS:赞助商链接提供商的要求是直接重定向到那里的服务器,而不需要我们的 servlet 或过滤器。
I'm developing web site on java.
Site contains some texts and sponsored links.
I need to traced user click by sponsored links without javascript.
How can do that?
PS: Requirement of sponsored links provider is redirect to there server directly without us servlets or filters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使链接指向一个 servlet(或类似的),该 servlet 将用户重定向到正确的网站并计算该 servlet 中的重定向数
make the links point to a servlet ( or similar ) that redirects the user to the correct website and count the redictions in that servlet
过去,我使用 JavaScript 函数调用 servlet 来跟踪链接。必须首先进行日志记录才能确保其运行。日志记录调用不需要同步,甚至不需要检查响应。这是一些伪代码:
In the past, I have used a javascript function to call a servlet to track the links. Logging has to come first to be sure it is run. The logging call doesn't need to be synchronous or even check for a response. Here is some pseudo-code: