I'm curious; do axios get requests send information about the invoking application to the server?
Basically, there's a free API which I wish to use. And they claim a limit of 1000 requests per day, and the API can be invoked through a simple AXIOS client request. And I'm wondering, if I have a 100 clients, with different IP addresses simply invoking the API, how would the server identify if it comes from the same application and thus enforce the limit?
I tried going through the axios github : https://github.com/axios/axios#global-axios-defaults but didn't make much progress.