pprathameshmore / QuoteGardenNPM

QuoteGarden library is just wrapper around https://github.com/pprathameshmore/QuoteGarden
https://www.npmjs.com/package/quotegarden
MIT License
6 stars 2 forks source link

Get request with param value more than one word showing as invalid url #3

Open Kamalakar-Gavali opened 2 years ago

Kamalakar-Gavali commented 2 years ago

HI whenver we are passing params for example author and its value is more than 1 word so we need to warp it in string("") but its giving error as invalid url. https://quote-garden.herokuapp.com/api/v3/quotes?author="Samuel Butler"

attaching screenshot for your reference image

FirminoMassango commented 2 years ago

In order to retrieve all quotes from author you don't need to pass the name (first name and last name) inside quotes, instead of doing this:

https://quote-garden.herokuapp.com/api/v3/quotes?author="Samuel Butler"

You need to get rid of quotes, so you will use a query like this:

https://quote-garden.herokuapp.com/api/v3/quotes?author=Samuel Butler