Woot4Moo
Woot4Moo

Reputation: 24316

What REST RFC does CodeIgniter follow?

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

Answers (1)

user149341
user149341

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

Related Questions