A
A
Alex2021-04-19 09:49:22
React
Alex, 2021-04-19 09:49:22

How to use json server?

Hello. How to make requests using json server? https://github.com/typicode/json-server
I am writing a study project, personal account, contact list. The contact page is available only with authorization. How to implement it? Can anyone write a specific example here?
I have already written all the functionality, but got stuck with authorization.
--------------

I figured out how to make a get request. But how do I simulate authorization?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Valery, 2021-04-20
@vmakhnyuk

As an option:

  1. create in db.jsonthe field
    "users": [{email: "[email protected]", password: "1234"},...]

  2. create routes /registerand/login
  3. In /registeradd user in "users", and in /loginsearch for user in "users"- link to the dock

Or use the ready-made solution: https://www.npmjs.com/package/json-server-auth

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question