Skip to content

Authentication and JWT tokens

Daniele Guido edited this page Apr 19, 2018 · 1 revision

local authentication

POST localhost:3030/authentication 

with header Content-Type: application/json and payload:

{
  "strategy": "local",
  "email": "[email protected]",
  "password": "your password"
}

https://docs.feathersjs.com/api/authentication/local.html

Oauth2 authentication

For the moment, ony github Oauth2 is supported (see feathers doc). Point your browser to: localhost:3030/auth/github.

Clone this wiki locally