The LinkedIn Api suggests you load their javascript library like this:
<script type="text/javascript" src="http://platform.linkedin.com/in.js">
api_key: your_api_key_goes_here
</script>
I want to know how I can load this using a script loader (eg. RequireJS or LABJS). It seems the library extracts the api key from within the script tags. This seems like a pretty weird way of doing it in my opinion!
I would prefer to load the library using a script loader, but can't seem to find out how to insert the api_key without using the suggested method.
The official instructions are here
Anyone have any ideas?