我正在编写一个 Meteor 应用程序,它利用嵌入向用户显示某些数据(链接、pdf)等。我想跟踪我的应用程序生成的嵌入调用的数量。为此,embedly 拥有自己的分析 ( http://embed.ly/docs/analytics/install )。
<script>
(function(w, d){
var id='embedly-platform', n = 'script';
if (!d.getElementById(id)){
w.embedly = w.embedly || function() {(w.embedly.q = w.embedly.q || []).push(arguments);};
var e = d.createElement(n); e.id = id; e.async=1;
e.src = ('https:' === document.location.protocol ? 'https' : 'http') + '://cdn.embedly.com/widgets/platform.js';
var s = d.getElementsByTagName(n)[0];
s.parentNode.insertBefore(e, s);
}
})(window, document);
// This is the important line. You will need to insert your API KEY here.
embedly('analytics', {key: '<Your Embedly Key>'});
</script>
我想要一些关于如何编写这个脚本来使用流星的帮助,因为它似乎不能作为辅助函数工作。我已经尝试使用此脚本创建一个 .js 文件并使用 Wait-on-Lib 包来加载它,但也不是这样。