Looking for help on understanding data coming from Microsoft App Center API

  • Thread starter Thread starter Zac Lingen
  • Start date Start date
Z

Zac Lingen

Guest
We're hitting /v0.1/apps/{owner_name}/{app_name}/analytics/versions through Microsoft App Center. The data being returned is a little ambiguous and wondering if anyone can provide some insight as to what it is providing.

Example of data when start = 2020-01-10T15:28:58+0000
{ "versions": [ { "version": "1.0.6", "count": 2 }, { "version": "1.10.1", "count": 1 }, { "version": "1.11.3", "count": 3 }, { "version": "1.12.3", "count": 14 }, { "version": "1.12.4", "count": 1 }, { "version": "2.0.0", "count": 376 }, { "version": "2.1.2", "count": 1 }, { "version": "2.2.0", "count": 1593 }, { "version": "2.3.0", "count": 749 } ], "total": 2740 }

Example of data when start = 2020-01-27T15:28:58+0000

{ "versions": [ { "version": "2.0.0", "count": 7 }, { "version": "2.2.0", "count": 9 }, { "version": "2.3.0", "count": 213 } ], "total": 229 }

Does anyone know how they're counting the users with app versions? We're wrote a Lambda for this under the assumption that is would return the number of people with specific versions downloaded given a day. However, it looks like there is some criteria around how a user gets lumped into this. For instance, is it based on someone actually opening and using the app?

Any help is appreciated. Thank you ahead of time

Continue reading...
 
Back
Top