D
Results
111
comments of
D
Could this be because the custom library being used (base64url) is encoding strings without the base64 padding? ```ts btoa('User:10') // 'VXNlcjoxMA==' Buffer.from('User:10').toString('base64') // 'VXNlcjoxMA==' base64url.encode('User:10') // 'VXNlcjoxMA' ``` I'm only...