Reputation: 1200
I am a bit confused while developing the REST API. Where does actually this API developed. Lets say, I have an android app and a Java based web app so the question is where am I suppose to develop this REST which will give me an access to my MySQL database in android app or on the server which will "produce" the JSON?
Also how does the mobile apps like Quora or FB consumes such a large data from server in a short time of period. Do they use REST?
Upvotes: -2
Views: 62
Reputation: 43778
It is implemented at both sides, at the server the server side (processing requests and sending responses), and at the client the client side (sending requests and processing responses).
Upvotes: 1