...
Within the Update User modal, select the setting to enable basic auth:
...
Basic authentication is a simple authentication scheme built into the HTTP protocol. The client sends HTTP requests with the Authorization
header that contains the word Basic
word followed by a space and a base64-encoded string username:password
. For example, to authorize as demo / p@55w0rd
the client would send:
Code Block |
---|
Authorization: Basic ZGVtbzpwQDU1dzByZA== |
Bearer HTTP Tokens
ClinSpark versions 23.3 and greater support Bearer HTTP Authentication.
...