I am following the sdk sample provided in the getting started for node.js but I am getting an 401error that states that no authorization token can be found. I think it is related to this step:
Choose a JWT library
As your API will be parsing JWT formatted access tokens, you will need to setup these capabilities on your API.
You can navigate to jwt.io and choose from there. Remember to pick a library that support your selected signing algorithm.
I have no idea what this step is asking me to do. Please can you help elaborate?
Do you mind sharing the specific sample(s) you’ve been working with?
It sounds like there is no Authorization header being included in the request and thus no authorization token - Basically, the middleware is checking to see if there is a valid Access Token included in the Authorization header, and in this case the header might be missing altogether.
For example, you can see this in action in our React sample: