Track how many time video is play in website using firebase analytics for react js

292 Views Asked by At

i am trying to track video information in firebase analytics for react js.

In firebase analytics option is not showing and also event also not generating.

1

There are 1 best solutions below

0
On

To log custom event in Analytics, you might want to try something like this:

<Button
 title="Play Video"
 onPress={async () =>
   await analytics().logEvent('play_video', {
     id: 3745092,
   })
 }
/>

To test your events, you could use the Analytics debug mode in your browser, install the Google Analytics Debugger Chrome extension.