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 badges
Add a ment  | 

2 Answers 2

Reset to default 5

No 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