@adrian_patrascu
Nothing here yet.
Nothing here yet.
No blogs yet.
For PostgreSql you may check this : https://github.com/QBisConsult/psql-api Install from git as standalone server: git clone https: //github.com/QBisConsult/psql-api.git It is a REST API for PostgreSQL, however it will not alter the database structure, it creates a database metadata and use it to check CRUD operations before sending to the database.
Yes, the token will be validated server side for every request. The server validation will provide also user information given by the token to be used next in server API code. JWT validation will check only if the token is valid and return its value (JSON object), it is a very fast process that do not consume resources. Send an Authorization : Bearer <token> request header as standard procedure. JWT is one of the best way for authorization as you can create RESTful solutions. (do not depend on web sessions anymore) You may check the JWT first when you receive a request, validate it and next route the request to the module that handle it with added token information.