Hi,
This is my scenario. I have a public web-site. There are two types of users:
- Anonymous – They are exploring the site, haven’t created a login
- Signed Users – Have an account and have logged in.
My question is how to handle anonymous users?
I do not want the API to be accessible to the whole world. CORS is also not a good option, as there are many ways around it.
What are my options?
Thanks.