REST Security

Cache The first step towards making your API available for clients is caching. A cache is usually a service that […]

Read More
Comments Off on REST Security

REST API

What’s a REST API? REST stands for Representational State Transfer. It is really just another layer of meaning on top […]

Read More
Comments Off on REST API

Sending Data with the Requests

Sending Data with a GET Request In a GET request, additional data related to your requested resource is passed as […]

Read More
Comments Off on Sending Data with the Requests

Response Format

200 level codes are success messages, particularly 200 code which is the message OK. 301 Page moved. 404 is Not […]

Read More
Comments Off on Response Format

Request Format

Request-Line The first line GET /xml HTTP/1.1 is called the request line. GET | POST GET is used when you […]

Read More
Comments Off on Request Format

What is HTTP?

HTTP Hyper Text Transfer Protocol: A set of rules that govern how 2 devices should communicate with each other over […]

Read More
Comments Off on What is HTTP?