Rest API - HTTP Methods
You want to optimize your REST API by using
HEAD and OPTIONS methods. Which approach best improves client efficiency?HEAD and OPTIONS methods. Which approach best improves client efficiency?HEAD usageHEAD checks if a resource exists by fetching headers without body, saving bandwidth.OPTIONS usageOPTIONS tells clients which HTTP methods are allowed, helping avoid invalid requests.HEAD to check resource existence and OPTIONS to discover allowed methods before sending requests -> Option A15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions