I want to query the yelp api, and have the following route:
app.get(\"/yelp/term/:term/location/:location\", yelp.listPlaces)
When I make a GET
In the requested url http://localhost:3000/yelp?term=food&location=austin
localhost:3000/yelp?term=food&location=austin i.e. data is everything after ?Query strings are not considered when peforming these matches, for example "GET /" would match the following route, as would "GET /?name=tobi".
So you should either :
req.query.term