Reputation: 24316
In the CodeIgniter implementation of REST, what is the RFC specification that it uses? For instance I have found this Atom Publishing RFC which is deemed the "canonical" REST specification.
Upvotes: 0
Views: 160
Reputation:
REST is a concept, not a specification. The RFC you're looking at is for a specific protocol (ATOM) which uses REST; this is not generally applicable to CodeIgniter (unless you're writing an application which implements ATOM).
Upvotes: 3