admin管理员组文章数量:1345884
I want to use Firbase analytics for a web application , i added the web project in the console and copier the snippet code at the end of the body tag.
here is the snippet code :
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src=".2.1/firebase-app.js">
</script>
<!-- TODO: Add SDKs for Firebase products that you want to use
-->
<script src=".2.1/firebase-analytics.js">
</script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "..-WY",
authDomain: "....firebaseapp",
databaseURL: "https://.....firebaseio",
projectId: "app-id",
storageBucket: "app-name.appspot",
messagingSenderId: "1122255",
appId: "1:22233355:web:fffff",
measurementId: "G-123J"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
firebase is not showing any data since 3 days , what's can be wrong ?
I want to use Firbase analytics for a web application , i added the web project in the console and copier the snippet code at the end of the body tag.
here is the snippet code :
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic./firebasejs/7.2.1/firebase-app.js">
</script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google./docs/web/setup#available-libraries -->
<script src="https://www.gstatic./firebasejs/7.2.1/firebase-analytics.js">
</script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "..-WY",
authDomain: "....firebaseapp.",
databaseURL: "https://.....firebaseio.",
projectId: "app-id",
storageBucket: "app-name.appspot.",
messagingSenderId: "1122255",
appId: "1:22233355:web:fffff",
measurementId: "G-123J"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
firebase is not showing any data since 3 days , what's can be wrong ?
Share Improve this question edited Oct 21, 2019 at 14:45 Frank van Puffelen 600k85 gold badges890 silver badges860 bronze badges asked Oct 21, 2019 at 10:49 Anass BoukalaneAnass Boukalane 54910 silver badges27 bronze badges2 Answers
Reset to default 5No solution, responding for further discussion.
In my case I have the web-app linked to a firebase hosted site so the configuration is set to automatic with the "reserved hosted URLs". The snippet in my case is just linking and initializing the SDK:
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="/__/firebase/7.2.1/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google./docs/web/setup#available-libraries -->
<script src="/__/firebase/7.2.1/firebase-analytics.js"></script>
<!-- Initialize Firebase -->
<script src="/__/firebase/init.js"></script>
It's been configured and deployed for around 48 hours but likewise I am not seeing any data in the firebase analytics dashboard.
I do have multiple websites per project, with their own sub-domains, but I would not expect that to cause any issues.
You need to put this before the closing of the body tag and after firebase bootstrapping is plete.
<script>
firebase.analytics();
</script>
本文标签: javascriptFirebase analytics not showing data for web applicationStack Overflow
版权声明:本文标题:javascript - Firebase analytics not showing data for web application - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743816008a2543927.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论