Authentication
Basic authentication
- uses http header
Authorizationwith the keywordBasic - the
userandpasswordare concatenated with:like thisuser:passand then converted to base64user:pass->dXNlcjpwYXNz - http header example:
Authorization: Basic dXNlcjpwYXNz
Bearer token
- uses http header
Authorizationwith the keywordBearer - http example:
Authorization: Bearer some_value
JWT
{JSON standard fields}.{Custom fields}.signature