Hello World app indicates that EBS access is unauthorized

I’ve gone through the instructions on the Github page for setting up the Hello World application and when I try to cycle the colors in the Extension, I keep getting an error in the Extension log.

I’ve run the EBS by running the following command:

#> node services/backend -c <client_id> -o DrMrBurrito -s <my_secret_key>

However, when I visit https://localhost:8081/ where the backend EBS is running, I see the following message.
{"statusCode":404,"error":"Not Found","message":"Not Found"}

Not sure how to proceed and any help would be nice.

Looks like https://github.com/twitchdev/extensions-hello-world/blob/master/services/backend.js#L137 is getting fired off. To me that suggests there is an issue with the token you’re sending from your backend. If you didn’t change anything from the hello world, i’m wondering if something is wrong with the secret you are starting your backend with, does it match the one you’ve supplied to the rig?

also the reason you don’t see anything when you go to https://localhost:8081/ is because there are only two routes that are handled by server. Also speaking of the server have you generated and used the certs for the backend? if yes are you sure they are in this location? https://github.com/twitchdev/extensions-hello-world/blob/master/services/frontend.js#L33-L36