All Questions
Tagged with google-analytics-api c#
201 questions
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....
0
votes
0
answers
57
views
Connecting to Google Analytics 4 with C# .NET Core desktop app - use database field contents instead of .json file
I have a C# / .NET Core desktop app that connects fine to Google Analytics 4 using the Google.Analytics.Data.V1Beta package. I have a .json file that Google created so I can access Google Analytics ...
1
vote
0
answers
260
views
can implement GoogleCredential.FromFile(file.json) when debugging but not after publishing
I'm trying to get data from Google Analytics through Data API v1Beta and it works properly until I publish the project(web application). Everything works fine except for the following code which is ...
1
vote
3
answers
1k
views
I have issues with Google Analytics Data API (GA4) in .NET
I have a problem, I can't get the call to analytics to work with the example from this documentation ( Quick start ). I've changed some things I've read, since it doesn't allow me to use the example ...
0
votes
0
answers
112
views
GA4, user count
I am trying to get unique number of active Users, this code counts the same user couple of times. Withot filter i can just get them with no dimension, but with filer i need to filter dimension.
List&...
0
votes
1
answer
357
views
Google Analytics for WPF C# Desktop Applications
Do we have any official google analytics SDK to integrate into the WPF app? I have gone through many articles but none of them provide the usage of the integration.
Also, Can we integrate google ...
1
vote
1
answer
325
views
Create a web app project that is linked to firebase analytics in C#
I created a web app and wanted to enable the analytics using api in C# library. I implemented it as follows :
public static void CreateWebProject()
{
var body = new WebApp()
{
...
0
votes
1
answer
546
views
.Net for Azure Synapse Analytics
I am new to Azure Synapse Service. I need to know if there is any .NET sdk for Azure Synapse because my use case is that I have fronted and logical layer of .NET. I also need to use Azure Synapse for ...
2
votes
1
answer
673
views
Specifying OrderBys on RunReportRequest object using Google Analytics Data API (Beta)
Using C#'s Google.Analytics.Data.V1Beta nuget package, how do I set the OrderBys when creating a RunReportRequest object? The property has only { get; } and no set. Perhaps this is not available in ...
1
vote
0
answers
870
views
Google Analytics Data API - not able to set empty Filters in request in C#.NET
I'm using the Google Analytics Data API v1 beta to fetch GA4 properties' data in C#.NET.
And I'm initializing the filters for it like this:
FilterExpression dimensionFilterExpression = new ...
0
votes
1
answer
728
views
Authorize Google analytics data from a web application
I am trying to authorize an ASP.NET Core 6 MVC web app to Google analytics data API.
[GoogleScopedAuthorize("https://www.googleapis.com/auth/analytics.readonly")]
public async Task<...
1
vote
1
answer
631
views
How do I add a metric name to MetricOrderBy when using Google.Analytics.Data.V1Beta?
I am writing come code in c# with Visual Studio 2022 to fetch Google G4 analytics data and cannot get one piece to work correctly. It is the part where a create an "OrderBy" list for the &...
1
vote
1
answer
2k
views
GA4 API The type or namespace name 'BetaAnalyticsDataClient' could not be found
I am trying to follow the example guide here https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries for .NET
I have installed the nuget package "Google....
0
votes
0
answers
2k
views
How to get View ID for Property in order to consume Google Analytics Reporting API V4
I have to fetch firebase analytics data from Google analytics reporting API v4 using C# for my mobile application.
When I created a project in firebase for storing analytics data in firebase, if for ...