|
|
| Article: |
An Introduction to JSON
|
| Subject: |
Principles of REST Web Service Design |
| Date: |
2008-02-18 03:09:24 |
| From: |
jc.lagache |
|
|
|
Create a URL to each resource. The resources should be nouns, not verbs. For example, do not use this: http://www.parts-depot.com/parts/getPart?id=00345
Note the verb, getPart. Instead, use a noun:
http://www.parts-depot.com/parts/00345 |
|