Forum Topic - FRCAPI Made a simple website to generate your authorization key: (4 Items)
   
FRCAPI Made a simple website to generate your authorization key  
http://isiah.me/frcapitoken/

This website simply takes your username and auth token and puts it in the right format and Base64 encodes it so it's 
ready to be pasted in the Authorization header.

You can see the source here: https://github.com/isiah-lloyd/jsfrceventapikey
Re: FRCAPI Made a simple website to generate your authorization key  
Cool! Thanks for posting this for others to utilize.
Re: FRCAPI Made a simple website to generate your authorization key  
That looks pretty handy.

However, I would remind others to exercise due caution when sharing secrets like passwords or authentication tokens with
 a third party. Isiah's web page looks pretty trustworthy as I write this, but in general it is difficult to be sure.

Those of us running OSX or Linux can achieve the equivalent without sharing secrets with anyone by running the following
 command in a terminal:

echo "USERNAME:TOKEN" | openssl base64

Replace USERNAME and TOKEN in the above with the respective values sent to you. The resulting value printed to the 
console can be pasted into your code.
Re: FRCAPI Made a simple website to generate your authorization key  
That's why I made sure to post the source so you can run a local copy if you wish. Also, you can see that it's just a 
static HTML page. But yes, in general it is always in beat practice to keep your secrets safe.