For further actions, you may consider blocking this person and/or reporting abuse
Read next
ECCV 2024 Redux: Fast and Photo-realistic Novel View Synthesis from Sparse Images
Jimmy Guerrero -
Comprehensive Comparison of GPT-Powered Obsidian Plugins in 2024 (Summary)
AIRabbit -
Cloud Security Measures
Vivesh -
Quick example of creating a custom Kotlin coroutine and scoping it to a Android service.
Tristan Elliott -
Top comments (1)
Molly and Billy have a wall where they put their art. The can do several things:
POST
a new picture on the wall.PUT
a new version of a picture on top of an old one, effectively replacing the original.GET
a photo of a picture to share with their friends.DELETE
it.PATCH
an existing picture by changing just a part of the picture.The core idea behind RESTful web services is that we can use these basic verbs (mostly
GET
,DELETE
,POST
, andPUT
) to build simple and straightforward APIs.Also, see earlier discussion at dev.to/pratikaambani/explain-http-...