JWT 401 Error using Node.js & jwt-simple

After really hitting this from all angles, I actually found my solution in one of your comments from another post on here :smiley:

var secret = Buffer.from('sOmESecReT=', 'base64');

That line saved my butt, as I’m now getting the results I needed. Thank you again!