Skip to content

poports/AuthServer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

AuthServer

Authentication using IdentityServer4

Curl:

curl --location --request POST 'https://localhost:5001/api/accounts' \
--header 'Content-Type: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
	"fullName": "Test Employer",
	"email": "test@example.com",
	"password": "P@ssw0rd1",
	"role": "employer"
}'

Postman: Method = POST; Body = raw

 {
	"fullName": "Test Employer",
	"email": "test@example.com",
	"password": "P@ssw0rd1",
	"role": "employer"
}

Test Url: https://localhost:5001/test-client/index.html

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published