如何跟踪图像和 iframe 的盗链?
我给出了嵌入 html 代码,以便其他人可以将我网站的部分内容作为 iframe 发布。我希望能够跟踪谁发布了我的嵌入代码。有办法做到这一点吗?
I give out an embed html code so others can post parts of my website as an iframe. I want to be able to track who has my embed code posted. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次生成可嵌入代码时,为每个人提供一个新的 GUID。
将 GUID 嵌入可嵌入代码中,以便将 GUID 传递到您的内容。然后,您可以记录每个 GUID 的每次点击以进行跟踪。
更新
由于您将病毒式传播嵌入代码,我建议检查 HTTP 标头中的 HTTP_REFERER 字段。它应该(我相信)包含加载您的内容的页面的 URL。
Each time you generate the embed-able code, give each person a new GUID.
Embed the GUID inside the embed-able code so that the GUID is passed to your content. You can then log each hit from each GUID for tracking.
UPDATE
Since you're going to be spreading the embed code virally, I would suggest checking the HTTP_REFERER field in the HTTP header. It should (I believe) contain the URL of the page loading your content.