Slide 13
Slide 13 text
GET /keep_in_mind HTTP/2
• The request method can be GET, POST, PUT, DELETE, PATCH
• Sometimes the microservice will add other details in the request that
we need to ignore (or not)
• Example microservice request: https://user-
service.domain.internal/user/1337/all?admin=false
• Only a status code 200 returns the content
• https://user-service.domain.internal/user/1337/../../ may fail if the web root
is a 404 or 403.
• Try and generate as many verbose error messages as possible to
gather as much as information as you can about what’s going on