EQAPS4057E A token is required.
Explanation
Authentication failed because the authentication service did not find any authentication token in the request.
System action
Connection to Debug Profile Service failed.
User response
Ensure that the required authentication token is specified.
- Basic Authentication: the
base64-encoded credentials must be defined in the Authorization header of the request prefixed with
Basic
. For example,Authorization: Basic <token>
. - JSON Web Token
(JWT) authentication: the JWT must be defined in the Authorization header of the request prefixed
with
Bearer
. For example,Authorization: Basic <token>
.