I am developing a web application that implements the facebook login process to identify the user and request information using the facebook API.
The question is what is best between server-side and client-side implementations in terms of api speed limits. For all documents and discussions, I read there a limit of 600 calls in 600 seconds, is this the number on ip or on access_token or on one application key? Is it better to implement the entire api call on the client side so as not to reach the maximum speed?
Thanks in advance
source
share