There is a page which does not need any sign in to get accessed. That means, one can directly hit the URL and see that page. When that page is loaded it loads a video and using Ajax makes a request to the server, to increment the view count of the video. Again, if somebody uses something like "firebug", he can see the URL for the request.
The problem is any body can use a load
test tool, to mimic the request and increase the video view count, without actually viewing it.
Is there a way to make sure that the request comes from inside a Browser and not some tool ?
Or, how do you suggest to solve this?
Thanks