Getting this response since today's morning when h...
# support
s
{ "message": "JWT doesn't permit access. Hot tip, you may be missing
token
in your JWT.", "error": "Forbidden", "statusCode": 403 } Earlier everthing was working fine, No changes made at our side.
token is being generated like this.
const token = jwt.sign(payload, key, { expiresIn: "1h" });
k
Hey SAnkit MB, Here are the updated docs on how to generate the JWT token. The change here is the involvement of the scope. That's why you're getting JWT doesn't have permission to access. Let me know how it goes for you.