Can bigquery or Firebase analytics data acessible from ios app side programmatically?

前端 未结 1 1425
无人及你
无人及你 2021-01-16 20:49

I have Firebase analytics data and enabled BigQuery. But I have a requirement to validate the number of events and screens at app side under automated UI testing. Anyway to

相关标签:
1条回答
  • 2021-01-16 21:12

    There is no API to retrieve Google Analytics data through Firebase. See Can I get firebase analytics data using query?

    There is also no API for BigQuery to allow secure access directly from your client-side app. That would be a significant security risk, as you'd be exposing data about all of your users to all of your users.

    The usual way to implement functionality is to create a custom endpoint (either using a server you already have, or Cloud Functions for Firebase) that exposes just the information your clients need access

    0 讨论(0)
提交回复
热议问题