Implementing a voting system without requiring registration

后端 未结 9 1418
旧巷少年郎
旧巷少年郎 2020-12-25 13:18

I\'d like to implement a voting system on my site, without having to force them to create an account. They would ultimately be voting up/down a piece of content which has a

9条回答
  •  悲&欢浪女
    2020-12-25 14:00

    You could identify users based on more than just their IP. For example you could include the IP + the entire request header information (such as Browser, Version Numbers, Capabilities) and hash that. That will more or less uniquely identify your user (not 100% though, unfortunately.)

提交回复
热议问题