Authentication required
The request did not say who is making it, or we did not accept the credentials it sent.
- Status
- Type
https://docs.digitospace.com/problems/unauthenticated
What it means
Every request must carry a token in the Authorization header, and this one had none, or had one we do not accept.
How to fix it
- Send the header as
Authorization: Bearer <token>, with a single space afterBearer. - Check the token is complete, with nothing added or cut off when it was copied.
- If the token has been revoked or replaced, use the current one.
Codes
| Code | Retryable | When |
|---|---|---|
unauthenticated | No | The bearer token is missing or not one we accept |
Last updated