From e2efaed4b88624c4a41a3075de659ab80ef89dc8 Mon Sep 17 00:00:00 2001 From: "Mark Fischer, Jr." Date: Wed, 6 May 2015 10:57:47 -0400 Subject: [PATCH] fixed grammar in restquicktips.html --- lessons/restquicktips.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lessons/restquicktips.html b/lessons/restquicktips.html index 0b625ff..4f9ab2f 100644 --- a/lessons/restquicktips.html +++ b/lessons/restquicktips.html @@ -55,7 +55,7 @@

Whether it's technically RESTful or not (according to the six constraints mentioned previously), here are a few recommended REST-like concepts. These six quick tips will result in better, more usable services.

Use HTTP Verbs to Mean Something

API consumers are capable of sending GET, POST, PUT, and DELETE verbs, and these verbs greatly enhance the clarity of what a given request does. Also, GET requests must not change any underlying resource data. Measurements and tracking may still occur, which updates data, but not resource data identified by the URI.

-

Generally, the four primary HTTP verb are used as follows: +

Generally, the four primary HTTP verbs are used as follows:

GET
Read a specific resource (by an identifier) or a collection of resources.