⚠️ This lesson is retired and might contain outdated information.

Use HTTP OPTIONS Method

Pete Johanson
InstructorPete Johanson
Share this video with your friends

Social Share Links

Send Tweet
Published 7 years ago
Updated 2 years ago

The HTTP OPTIONS method is used to request information about the communication options available for the target resource. The response may include an Allow header indicating allowed HTTP methods on the resource, or various Cross Origin Resource Sharing headers. The HTTP OPTIONS method is both safe and idempotent, as it is intended only for use in querying information about ways to interact with a resource.

[00:00] The HTTP options method is used to discover the ways that we can interact with a certain resource. Let's take a look at an options request to the Twilio API. Here, we can see the first line of our request uses the options method.

[00:17] Much like get and head, there is no request body, just the first line, and the request headers. The Twilio API has responded with a 200 family status code, as well as a set of response headers to provide us some additional metadata.

[00:30] The most frequently used response header when responding to options requests is the allow header. This header is used to indicate the allowed HTTP methods that can be used when interacting with our resource.

[00:41] Here, we can see the Twilio API is indicating that head, options, and get are the valid methods that can be used with this resource.

[00:51] In addition to the allow header, there are a set of headers being used to control cross-origin resource sharing, which is the mechanism that allows browsers to interact with APIs not hosted on their own origin server.

[01:05] For instance, if you have your own web application that would like to directly make API requests to Twilio from the browser.

[01:12] Here, we can see that Twilio is indicating that any origin server can be used with cross-origin resource sharing, as well as which HTTP headers can be included in those requests, and which HTTP headers in the response will be exposed to the browser client.

[01:28] To summarize, the HTTP options method is used to discover the ways we can interact with a certain resource, such as which HTTP methods are allowed, or the various controls of cross-origin resource sharing.

Mike
Mike
~ 7 years ago

Great course. I enjoyed how you used GitHub for most of the examples.

Pete Johanson
Pete Johansoninstructor
~ 7 years ago

I'm glad you enjoyed it! Using GitHub for the API examples was a nice way to tie it into a familiar domain using a freely available API.

Markdown supported.
Become a member to join the discussionEnroll Today