Home > Net >  popular free-to-use api doesn't seem to work
popular free-to-use api doesn't seem to work

Time:02-10

I'm trying to use this api in my pet project,
but when I test it on docs page - POST request "create User"
it always sends back 401: Unauthorized The question is: how I can create a new user?
I think this free-to-use api is very popular: api link:
https://nestjs-boilerplate-test.herokuapp.com/docs/#/

CodePudding user response:

It is happening because you are not authorized to use the api.

You need a TOKEN or an API KEY to be able to make request to that API server.

  • Related