Skip to content
Advertisement

How do I add parameters to https get request?

I am working on a little project to learn how to work with APIs by making GET requests to the Twitter API v2 via a node server.

For the get requests I am using Node’s built in https package.

I made a basic GET request that returns a list of the last 10 tweets from a user. I think in order to increase the amount of tweets I can get I have to make a separate parameter object, which I then implement in the get request.

Right now my function looks like this:

JavaScript

Right now I only have the options object with host, path, and headers in the request.

This is what I am trying to do:

JavaScript

But I get

JavaScript

Advertisement

Answer

You can either only pass the URL or an object containing options as stated in the docs: https://nodejs.org/api/https.html#https_https_get_url_options_callback

So you might want to try something like this:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement