https://www.googleapis.com/analytics/v3/data/ga?ids=ga%3A187243477&start-date=2019-01-01&end-date=2019-03-14&metrics=ga%3Ausers&dimensions=ga%3AdeviceCategory%2Cga%3AscreenResolution&sort=-ga%3Ausers&include-empty-rows=false&max-results=10
2. JSON Response
{
"kind":"analytics#gaData",
"id":"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:187243477&dimensions=ga:deviceCategory,ga:screenResolution&metrics=ga:users&sort=-ga:users&start-date=2019-01-01&end-date=2019-03-14&max-results=10",
"query":{
"start-date":"2019-01-01",
"end-date":"2019-03-14",
"ids":"ga:187243477",
"dimensions":"ga:deviceCategory,ga:screenResolution",
"metrics":[
"ga:users"
],
"sort":[
"-ga:users"
],
"start-index":1,
"max-results":10
},
"itemsPerPage":10,
"totalResults":39,
"selfLink":"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:187243477&dimensions=ga:deviceCategory,ga:screenResolution&metrics=ga:users&sort=-ga:users&start-date=2019-01-01&end-date=2019-03-14&max-results=10",
"nextLink":"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:187243477&dimensions=ga:deviceCategory,ga:screenResolution&metrics=ga:users&sort=-ga:users&start-date=2019-01-01&end-date=2019-03-14&start-index=11&max-results=10",
"profileInfo":{
"profileId":"187243477",
"accountId":"131677935",
"webPropertyId":"UA-131677935-1",
"internalWebPropertyId":"191281733",
"profileName":"All Web Site Data",
"tableId":"ga:187243477"
},
"containsSampledData":false,
"columnHeaders":[
{
"name":"ga:deviceCategory",
"columnType":"DIMENSION",
"dataType":"STRING"
},
{
"name":"ga:screenResolution",
"columnType":"DIMENSION",
"dataType":"STRING"
},
{
"name":"ga:users",
"columnType":"METRIC",
"dataType":"INTEGER"
}
],
"totalsForAllResults":{
"ga:users":"130"
},
"rows":[
[
"desktop",
"1920x1080",
"34"
],
[
"desktop",
"800x400",
"32"
],
[
"desktop",
"1600x900",
"6"
],
[
"tablet",
"1920x1080",
"6"
],
[
"desktop",
"1280x720",
"4"
],
[
"desktop",
"1368x912",
"4"
],
[
"desktop",
"1688x906",
"2"
],
[
"desktop",
"1824x1216",
"2"
],
[
"desktop",
"1829x1029",
"2"
],
[
"desktop",
"2057x1157",
"2"
]
]
}
3. Parse the response into table records. We can now use the table records in report, grid, chart etc...
SELECT
jt.*
FROM
JSON_TABLE ( <<response data from above>>, '$'
COLUMNS (
"kind" VARCHAR2 ( 255 ) PATH '$.kind',
"totalsforallresults" NUMBER PATH '$.totalsForAllResults."ga:users"',
NESTED PATH '$.rows[*]'
COLUMNS (
"series" VARCHAR2 ( 255 ) PATH '$[0]' NULL ON ERROR,
"label" VARCHAR2 ( 255 ) PATH '$[1]' NULL ON ERROR,
"value" NUMBER PATH '$[2]' NULL ON ERROR
)
)
)
jt
No comments:
Post a Comment