How to complete the challenge GET /secret/note (Bearer)

First complete POST /secret/token (201) to obtain an X-AUTH-TOKEN value.

Then send GET /secret/note using that token as a Bearer token in the Authorization header. Do not send the token as X-AUTH-TOKEN for this challenge.

Try it now

If you do not already have an auth token, create one with POST /secret/token. See the solution.

POST /secret/token to create an auth token
GET /secret/note with a Bearer token to read the secret note
Experiment with this endpoint