4,326 questions
-1
votes
0
answers
12
views
Google Search Console API using Service-Account get Links-Referral report
i want to get Referral link-domain list as report from Google Search Console API
as showing in the image
Note: my service-account.json is connected with Google-Analytics and Google-Search-Console ...
0
votes
0
answers
9
views
Debug view isn't working when I use Google Analytics API in Postman
I want to query google analytic's endpoint to store data from my desktop app, at this moment I'm only using Postman to test, now It works but I've to wait 48 hours to see my requests in the dashboard. ...
0
votes
0
answers
18
views
Google Analytics Reports API - sufficient permissions for this profile [duplicate]
enter image description here
I'm sure I configured the entire project in both Google Analytics and Google Cloud but it still gives me this, I'm using the credentials from a file generated in JSON and ...
1
vote
0
answers
47
views
Incorrect data in GA4 realtime reporting API vs UI
When I use the Google Analytics RealTime API, I get a difference in the data between the API response and the data from the GA4 UI dashboard.
I want to retrieve the active users for the last 30 ...
1
vote
1
answer
27
views
The filter 'does not match regex' match type not working in GA4 API
I am using ga4 api and following is the code which is throwing error:
'AttributeError: DOES_NOT_MATCH_REGEX'
The same filter works on GA analaytics webpage but not here.
def run_ga4_report(...
0
votes
0
answers
36
views
Google Analytics API: How to run a report for AlphaAnalyticsDataClient?
The Issue
I cannot figure out how to run a report in the Google Analytics API for AlphaAnalyticsDataClient Alpha.
There is seemingly no equivalent for client.run_report for Alpha. What would be the ...
1
vote
0
answers
41
views
API query results descrepancy between properties
I download data from multiple properties. When I query the Google Analytics 4 API thusly,
Using an appropriately credentialed JSON key
{
property: "properties/****"
dimensions {name: "...
0
votes
0
answers
40
views
Issues with Sending Events to Google Analytics via Measurement Protocol and DebugView
I’m developing an application where it was not possible to implement Firebase for sending events to Google Analytics. As an alternative, I'm using the Measurement Protocol to send data via API, ...
0
votes
0
answers
33
views
Google analytics batch reports
I have a problem, I am not sure how can I make this work, so i have
ecommerce website and since everyone can sell on it i need to make it
possible for every seller to see how many page views his ...
0
votes
0
answers
82
views
503 failed to connect to all addresses -Google Analytics API
I have developed python script that google analytics report access via API. I added the libraries I use.
from google.analytics.data import BetaAnalyticsDataClient
from google.analytics.data_v1beta....
0
votes
1
answer
73
views
Google Analytics API Error - Gapic::UniverseDomainMismatch
I have been using the Google Analytics API (google-analytics-data, version: 1.4) in my Ruby on Rails app for the past 3 years and it has been working great up until 9/25/24 when all the queries ...
0
votes
1
answer
60
views
New Dimension in RunReportRequest Reduces Results in Google Analytics (GA4) Python Data API
The behaviour I’m looking to understand (and ideally resolve) has to do with generating custom reports with a new companyId dimension created last week.
I notice that with the code below, when I ...
0
votes
1
answer
51
views
What Oauth2 scope do I need to access Google Analytics Admin API?
I have an Oauth flow that gets the following scopes:
email
https://www.googleapis.com/auth/analytics
https://www.googleapis.com/auth/analytics.readonly
However, when I query Google Analytics Admin API:...
0
votes
1
answer
48
views
Discrepancy in totalUsers Metric between Google Analytics and API Integration
I’ve been struggling for days to integrate Google Analytics with Power BI. Here’s what I’ve tried so far:
Linkind via BigQuery: It creates a table per day in Power BI, which isn’t suitable for my ...
0
votes
0
answers
73
views
Google.Analytics.Data.V1Beta Api, error "Encountered too much data for one HASH JOIN partition" BetaAnalyticsDataClient RunReport
I am using the following code to get report from Google.Analytics.Data.V1Beta Api
var client = new BetaAnalyticsDataClientBuilder
{
GrpcAdapter = RestGrpcAdapter.Default
}.Build();
return client....