Search code examples
authenticationrequestpostmanquarkusform-data

Quarkus Authentication using HTTP Request


I am pretty new into Quarkus world. I want to create a simple form authentication with Quarkus security. Is there a way to do the authentication using a form-data with a POST Request from Postman?


Solution

  • Yes there could be many ways of authentication. For instance follow this tutorial for Basic Authentication check with a JDBC connection to a database:

    Using Security with JDBC

    It explains how Quarkus can authenticate endpoints with the credentials stored in given database. You can use different types of databases.