Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I'm stumped. I know there's lots of Base64 encoders/decoders for JS, but not for the modified (and Facebook-favored) Base64URL variation. So far searching across stackoverflow has come up dry.

Yes, I could use PHP or another server-side library to decode this, but I'm trying to keep this universal regardless of what platform I'm using... for example, if I were to host a HTML-only Facebook app on Amazon S3/CloudFront and only use their JS SDK and jQuery to take care of processing forms and getting data.

That said, does anyone know of any Base64URL-specific decoders for JavaScript?

Thanks in advance!

share|improve this question

5 Answers

Solution:

var b64str = base64.encode('foo bar');

// fix padding according to the new format
b64str = b64str.padRight(b64str.length + (4 - b64str.length % 4) % 4, '=');

Using this great base64 encode/decode: http://code.google.com/p/stringencoders/source/browse/trunk/javascript/base64.js

Also depends on the padRight method:

String.prototype.padRight = function(n, pad){
    t = this;
    if(n > this.length)
        for(i = 0; i < n-this.length; i++)
            t += pad;
    return t;
}
share|improve this answer
Hi Simeon... I think this could work, but I think I also need to replace "-" and "+" with "_" and "/" - good starting point though. I was hoping to find one with everything wrapped in the same library, but I guess I might just have to modify a library a little bit afterall. – chrisfullman Mar 8 '11 at 21:33
Strange... actually, I just did a JS version of this answer: stackoverflow.com/questions/1228701/… – Simeon Mar 9 '11 at 8:24

Here is an example of connecting to facebook using Node.js. It provides a solution. It works for me.

Node.js JSON parsing error

share|improve this answer
  var str = "string";
        var encoded = btoa(str); // encode a string (base64)
        var decoded = atob(encoded); //decode the string 
        alert( ["string base64 encoded:",encoded,"\r\n", "string base64 decoded:",decoded].join('') );
share|improve this answer

If you need IE support (shrugs...) the you can use http://code.google.com/p/stringencoders/source/browse/trunk/javascript/base64.js?r=210

share|improve this answer
Yep, definitely will need IE support, and I think I'll be using this library but have to modify it a tad to take care of some additional modification for the URL variation. Thanks! – chrisfullman Mar 8 '11 at 21:34
That's an old version. Use this instead: code.google.com/p/stringencoders/source/browse/trunk/javascript/… – Simeon Mar 9 '11 at 8:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.