Process Incoming Request Data Using the Request Class in Workers

Share this video with your friends

Social Share Links

Send Tweet
Published 3 years ago
Updated 3 years ago

In this lesson, we'll explore the Request class in Workers, and how it can be used to handle incoming data sent to an API. We'll also use a command-line tool to simulate how our API will be used by browsers.

Instructor: [0:00] With our serverless API, we want to handle incoming requests. Let's look at the request class and understand how it works. In our handleRequest function, we already have request coming in as the argument to our function. We can get data out of it by using a number of different methods.

[0:15] Inside of our documentation, the request page defines what the class for request looks like and the different functions that we have available to us. The method section shows how we can look at our request and understand what the body of the requests that's coming in looks like.

[0:28] We can do things like get an array buffer, form data, JSON or text. Each of these returns a promise which results to the data type for that specific method, array buffer, form data, object, or string.

[0:41] In this case, we're going to be using JSON. Let's use the JSON function, await the promise that comes back, which will ultimately return this object that has our JSON data. Inside of our function, I'll say, const body = await request.json, which will return once the promise resolves an object representing the request body that's being sent as part of our request at the serverless API.

[1:05] Now, in our response, let's return that back from the API so that we can see what it looks like. To do that, I'll remove this hello worker string and say, JSON stringify body. This will just return back the response it's basically pulling out of JSON and then returning away back into JSON.

[1:21] I'll also remove these headers here and I'll return the JSON stringified body. We want to actually test this and make sure that it would work like we'd expect. To do that, lets open up the terminal and run wrangler dev.

[1:34] Wrangler dev will look at our project and make it available for testing at a localhost URL, in this case localhost curling 8787127...1 being kind of an alias to localhost. Let's just copy that URL then will make a curl request that will send JSON up to our API.

[1:53] I'll say, Curl. Then pass in a header, content type application JSON, and then some data using Dash D. I'll say, Query is set to getchar. Finally, I'll give the URL itself which I just pasted here and you can see that it returns a body of query getchar.

[2:09] It's taking the data from our request, passing it and then giving it back to us as the response. To make sure that this works like we'd expect, let's destructure query out of our body and then return it back as the response as a string.

[2:23] I'll say, Return new response your query was query. Send that back as a simple string using ES6 template literals. If I come back here, you can see that my wrangler dev instance has detected changes. If I come back here and run this command again, you can see it says, your query was getchar.

[2:41] We've looked at the request and parsed out a JSON object out of it and then returned something specifically query as the response back from that request.

egghead
egghead
~ 22 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today