copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
What is REST?: REST API Tutorial A RESTful API looks like hypertext Every addressable unit of information carries an address, either explicitly (e g , link and id attributes) or implicitly (e g , derived from the media type definition and representation structure)
HTTP Methods - REST API Tutorial REST guidelines suggest using a specific HTTP method on a particular type of call made to the server i e GET, POST, PUT or DELETE
How to Design a REST API - Step by Step Guide Follow these steps to design a REST API - Identify the Object Model, Create Resource URIs, Determine Representations, and Assign HTTP Methods
Richardson Maturity Model - REST API Tutorial Richardson Maturity Model serves as a reference for assessing and improving the design of RESTful web services It highlights the importance of URI design, HTTP methods, and HATEOAS in achieving different levels of RESTful maturity
REST Architectural Constraints - REST API Tutorial REST defines 6 architectural constraints which make any web service - a truly RESTful API i e Uniform interface, Client–server, Stateless, Cacheable, Layered system, Code on demand (optional)
What is JSON - REST API Tutorial In JSON tutorial, learn various concepts about JSON such as difference with XML, syntax and data types, read write JSON and convert JSON to string and vice-versa etc
HTTP Status Codes - REST API Tutorial HTTP specification defines these standard status codes divided into five categories that can be used to convey the results of a client’s request
REST API Best Practices Nordic’s article on RESTful API pagination is a good resource for exploring the topic further 11 API Security is Not an Afterthought The security of an API is a non-negotiable aspect We must use the latest security practices with proper authentication mechanisms like OAuth2, API keys, or JWT (JSON Web Tokens)
Difference between PUT and POST in REST API When designing REST APIs, this has been observed that many people struggle to choose between HTTP PUT or POST methods due to their seemingly similar objectives – both involve sending data to a server However, understanding the differences between HTTP PUT and POST is crucial for their correct usage Though, RFC 2616 has been very clear in differentiating between the two – yet complex