SlideShare a Scribd company logo
HTTP Methods
How They Relate to RESTful API's
About Me
Herman J. Radtke III

Web Architect at HauteLook
  Design the RESTful API

Writing PHP for 9 years

Maintain pecl/gearman and pecl/memcache
Perspective
HauteLook's API is for internal use
  Very few restrictions on design
  Example: Netflix

Many companies have an external API
  Concerned with how the design affects
  other clients (ex: flash)
  Examples: Twilio, Jira, Facebook
Why?
REST is an architectural style
RESTful Language
HTTP Methods are verbs
URLs are nouns

Example:
GET /users/1234
Logging Out
POST /logout
  POST is for create
  Means: Create a logout resource

DELETE /logout
  DELETE is to remove a resource
  Means: Delete a logout resource

DELETE /credentials
GET vs POST




Do we actually know the differences?
GET vs POST
I ask every interviewee this question.

Common answers:
GET does not send a body in the request

POST can send more data

POST is more secure
Idempotence
Idempotence means no side-effects.

This is the most important difference!
  GET is idempotent (safe)
  POST is not idempotent (unsafe)

It allows the web to scale.
Improper use of GET
<a href=”/logout.php”>Logout</a>

We just broke the internet
  Caching proxies
  Browser "accelerator" plugins

Better to use a form with the POST method

Other example: Tracking Pixels
POST vs PUT
POST is create and PUT is update, right?

Not so simple
  Methods do not map to CRUD
  CRUD can map to the methods

Key difference?
  PUT is idempotent!
Create Using POST
Create Using PUT
Update Using POST 1/2
Update Using POST 2/2
Update Using PUT
Other HTTP Methods
PATCH

DELETE

HEAD

OPTIONS
Additional Resources
RFC 2616 Method Definitions - http://www.
w3.org/Protocols/rfc2616/rfc2616-sec9.html

#rest on freenode

My twitter - @hermanradtke

More Related Content

PPT
Ofbiz Guy Gershoni 20060621
PPT
Opensource
PDF
How to translate your Single Page Application - Webcamp 2016 (en)
PDF
Validation Improvement Trend
PDF
RESTful APIs with Herman Radtke
PDF
REST APIS web development for backend familiarity
PPTX
Tutorial_Rest_API_For_Beginners_125.pptx
PPTX
rest-api-basics.pptx
Ofbiz Guy Gershoni 20060621
Opensource
How to translate your Single Page Application - Webcamp 2016 (en)
Validation Improvement Trend
RESTful APIs with Herman Radtke
REST APIS web development for backend familiarity
Tutorial_Rest_API_For_Beginners_125.pptx
rest-api-basics.pptx

Similar to Groking HTTP Methods (20)

PPTX
Understanding APIs.pptx
PPTX
Understanding APIs.pptx introduction chk
PPTX
Graph ql vs rest
PPTX
Pragmatic REST APIs
PPTX
REST API
PPTX
REST library.pptx
PDF
How does the Web work?
PDF
Introduction to Rest Protocol
PDF
RESTful Web Services
PPTX
Rest Webservice
PDF
A RESTful introduction
ODP
REST API Laravel
PPTX
rest-api-basics.pptx
PDF
REST API Basics
PPTX
RESTful Web Services.pptxbnbjmgbjbvvhvhj
PDF
Алексей Веркеенко "Symfony2 & REST API"
PPTX
Standards of rest api
PPTX
REST Methodologies
PPTX
RESTful Services
PPTX
Rest WebAPI with OData
Understanding APIs.pptx
Understanding APIs.pptx introduction chk
Graph ql vs rest
Pragmatic REST APIs
REST API
REST library.pptx
How does the Web work?
Introduction to Rest Protocol
RESTful Web Services
Rest Webservice
A RESTful introduction
REST API Laravel
rest-api-basics.pptx
REST API Basics
RESTful Web Services.pptxbnbjmgbjbvvhvhj
Алексей Веркеенко "Symfony2 & REST API"
Standards of rest api
REST Methodologies
RESTful Services
Rest WebAPI with OData
Ad

Recently uploaded (20)

PPTX
Spectroscopy.pptx food analysis technology
PDF
Approach and Philosophy of On baking technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
cuic standard and advanced reporting.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
Cloud computing and distributed systems.
PDF
Encapsulation theory and applications.pdf
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
MYSQL Presentation for SQL database connectivity
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
Spectroscopy.pptx food analysis technology
Approach and Philosophy of On baking technology
Building Integrated photovoltaic BIPV_UPV.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
cuic standard and advanced reporting.pdf
20250228 LYD VKU AI Blended-Learning.pptx
sap open course for s4hana steps from ECC to s4
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Cloud computing and distributed systems.
Encapsulation theory and applications.pdf
“AI and Expert System Decision Support & Business Intelligence Systems”
Encapsulation_ Review paper, used for researhc scholars
MYSQL Presentation for SQL database connectivity
The AUB Centre for AI in Media Proposal.docx
NewMind AI Weekly Chronicles - August'25 Week I
Reach Out and Touch Someone: Haptics and Empathic Computing
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Network Security Unit 5.pdf for BCA BBA.
Dropbox Q2 2025 Financial Results & Investor Presentation
Ad

Groking HTTP Methods