While working with Embedly, I noticed that the key used in the Embedly JavaScript is easily visible to anyone who knows how to "Inspect Element."
Is there a way to conceal this key in the JavaScript code so it's not exposed to those using "Inspect Element"?
<script type="text/javascript">
$('document').ready(function(){
$('div.featuredGame').embedly({
maxWidth: 200,
maxHeight: 140,
key: 'REMOVED_FOR_SECURITY'
});
});
</script>