i'm developping a web-based application that implement facebook login process to identify user and ask for their info using facebook graph API.
The question is which is better between server side and client side implementation in term of api rate limitation. For all the documentations and discussions i'have read there's a limit of 600 calls per 600 seconds, is that count per ip or per access_token or per application key? Is that better to implement all the api call on client side to not to reach the limit rate?
Thanks in advance