APIs You Won't Hate
Webhook can't tell you nothin'
- Should endpoints be named after the action, like
- /getThing
 - /updateThing
 - or after the resource with different HTTP verbs, like
 - GET /things
 - POST /things?
 - What are the reasons to go with one or the other?
 
 - Async operations with REST APIs - how do you do it?
- long callbacks, short callbacks
 - polling
 - pubsub
 
 - What's the point of a Webhook?
 - "Working with Webhooks" Lorna Mitchell @ PHP Barcelona 2019 link
 
APIs You Won't Hate