I've decided to build an extension app for the SoundCloud music service. I'm using their JavaScript API/SDK. As a first step the application needs to get authorized using two credentials:
// initialize client with app credentials
SC.initialize({
client_id: '32487239478237941111', // fake
redirect_uri: 'fakepage.html'
});
I would like to add this project to my portfolio. At the same time however I would like to hide the client_id, since it's my own key from my account that gives the app access. Since I'm not using their back-end api, what are my options in masking this token?