Restful API Tutorial
REST API Concepts: REST (REpresentational State Transfer) is an architectural style, and an approach to communications that is often used in the development of Web services . What is Web Services: "Exposed to internet, that are programmatic access" API: The APIs that are executed in single machine ie Each jar files executed inside a client application. In case of web-services, other developer call them code and write code to consume these services. For Example, The twitter.com it would produce output as HTML/CSS format, that are human readable web application. As same as api.twitter.com, that would produce data like xml/json format. Web-service Characteristics: 1. Exchange of data, that are HTTP methods. 2. Protocol - HTTP. 3. It ...