You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do you secure your APIs so that only your React client can access.
For e.g. if user registration endpoint isn't secured, anyone can post request and create unlimited users.
In this case, how you would secure the APIs, specifically, those endpoints which don't have Authorize attributes.
Really appreciate help in this regards. Thanks in advance.
The text was updated successfully, but these errors were encountered:
@ahmedtanveer an idea would be to create some sort of middleware that logs IPs and limits the number of requests they can make. This is useful even for secured endpoints because you could have a user registering and then performing a DoS attack to your system. The registration endpoints could have stricter quotas than the normal usage ones.
Hi,
Thanks for the great piece of work.
How do you secure your APIs so that only your React client can access.
For e.g. if user registration endpoint isn't secured, anyone can post request and create unlimited users.
In this case, how you would secure the APIs, specifically, those endpoints which don't have Authorize attributes.
Really appreciate help in this regards. Thanks in advance.
The text was updated successfully, but these errors were encountered: