Ok, gotta another "fun" one (cf2021u4).
Using member functions, what is the proper way to take string "foo", and get a base64URL result?
I've tried the simple:
variables.foo.binaryEncode( "base64URL" );
and i've tried to get slightly clever:
variables.foo.toBase64().toBinary().binaryEncode( "base64URL" );
I hope i'm missing something obvious here.