This repository was archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
samples: update the sample to use the Google Analytics Data API v1 beta #164
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
10ce390
docs: added a sample
ikuleshov b8faf72
docs: update the sample to use the Google Analytics Data API v1 beta
ikuleshov 81b76b9
docs: update the sample to use the Google Analytics Data API v1 beta
ikuleshov 0274276
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 424a830
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov d93ebc9
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 68b4772
Merge remote-tracking branch 'upstream/master'
ikuleshov 7738531
Merge remote-tracking branch 'upstream/master'
ikuleshov da158c1
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 0e460c0
docs: add a sample using explicit JSON service account credentials
ikuleshov 5591834
Merge remote-tracking branch 'upstream/master'
ikuleshov 66dce23
Merge remote-tracking branch 'upstream/master'
ikuleshov 66cd852
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 2827f2c
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov a8a8d46
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov acad98f
Merge remote-tracking branch 'upstream/master'
ikuleshov 9c865ec
fix: update samples to Data API v1 beta
ikuleshov 6734311
fix: update samples to Data API v1 beta
ikuleshov bd9acd2
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov e2f14da
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov aef95c7
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 47e365d
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov af505c3
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 2713fc9
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov fff5c2b
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 43bad67
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov c485d2e
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 63d2212
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 7a7dda0
move main to the top of the class
ikuleshov 1b72e21
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov 1e2494d
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov f5bda9f
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov e86f5d2
update region tag names
ikuleshov 155b1da
update region tag names
ikuleshov 011b623
Merge branch 'master' of github.com:ikuleshov/java-analytics-data
ikuleshov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
samples/snippets/src/main/java/com/example/analytics/QuickstartJsonCredentialsSample.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| /* | ||
| * Copyright 2021 Google LLC | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package com.example.analytics; | ||
|
|
||
| /* Google Analytics Data API sample quickstart application. | ||
|
|
||
| This application demonstrates the usage of the Analytics Data API using | ||
| service account credentials from a JSON file downloaded from | ||
| the Google Cloud Console. | ||
|
|
||
| Before you start the application, please review the comments starting with | ||
| "TODO(developer)" and update the code to use correct values. | ||
|
|
||
| To run this sample using Maven: | ||
| cd java-analytics-data/samples/snippets | ||
| mvn compile | ||
| mvn exec:java -Dexec.mainClass="com.example.analytics.QuickstartJsonCredentialsSample" | ||
| */ | ||
|
|
||
| // [START analyticsdata_json_credentials_quickstart] | ||
| import com.google.analytics.data.v1beta.BetaAnalyticsDataClient; | ||
| import com.google.analytics.data.v1beta.BetaAnalyticsDataSettings; | ||
| import com.google.analytics.data.v1beta.DateRange; | ||
| import com.google.analytics.data.v1beta.Dimension; | ||
| import com.google.analytics.data.v1beta.Metric; | ||
| import com.google.analytics.data.v1beta.Row; | ||
| import com.google.analytics.data.v1beta.RunReportRequest; | ||
| import com.google.analytics.data.v1beta.RunReportResponse; | ||
| import com.google.api.gax.core.FixedCredentialsProvider; | ||
| import com.google.auth.oauth2.GoogleCredentials; | ||
| import java.io.FileInputStream; | ||
|
|
||
| public class QuickstartJsonCredentialsSample { | ||
|
|
||
| public static void main(String... args) throws Exception { | ||
| /** | ||
| * TODO(developer): Replace this variable with your Google Analytics 4 property ID before | ||
| * running the sample. | ||
| */ | ||
| String propertyId = "YOUR-GA4-PROPERTY-ID"; | ||
|
|
||
| /** TODO(developer): Replace this variable with a valid path to the credentials.json file | ||
| * for your service account downloaded from the Cloud Console. | ||
| */ | ||
| String credentialsJsonPath = "/path/to/credentials.json"; | ||
| sampleRunReport(propertyId, credentialsJsonPath); | ||
| } | ||
|
|
||
| // This is an example snippet that calls the Google Analytics Data API and runs a simple report | ||
| // on the provided GA4 property id. | ||
| static void sampleRunReport(String propertyId, String credentialsJsonPath) throws Exception { | ||
| // [START analyticsdata_json_credentials_initialize] | ||
| // Explicitly use service account credentials by specifying | ||
| // the private key file. | ||
| GoogleCredentials credentials = GoogleCredentials | ||
| .fromStream(new FileInputStream(credentialsJsonPath)); | ||
|
|
||
| BetaAnalyticsDataSettings betaAnalyticsDataSettings = | ||
| BetaAnalyticsDataSettings.newBuilder() | ||
| .setCredentialsProvider(FixedCredentialsProvider.create(credentials)) | ||
| .build(); | ||
|
|
||
| try (BetaAnalyticsDataClient analyticsData = | ||
| BetaAnalyticsDataClient.create(betaAnalyticsDataSettings)) { | ||
| // [END analyticsdata_json_credentials_initialize] | ||
|
|
||
| // [START analyticsdata_json_credentials_run_report] | ||
| RunReportRequest request = RunReportRequest.newBuilder() | ||
| .setProperty("properties/" + propertyId) | ||
| .addDimensions( | ||
| Dimension.newBuilder().setName("city")) | ||
| .addMetrics(Metric.newBuilder().setName("activeUsers")) | ||
| .addDateRanges( | ||
| DateRange.newBuilder().setStartDate("2020-03-31").setEndDate("today")).build(); | ||
|
|
||
| // Make the request. | ||
| RunReportResponse response = analyticsData.runReport(request); | ||
| // [END analyticsdata_json_credentials_run_report] | ||
|
|
||
| // [START analyticsdata_json_credentials_print_report] | ||
| System.out.println("Report result:"); | ||
| // Iterate through every row of the API response. | ||
| for (Row row : response.getRowsList()) { | ||
| System.out.printf("%s, %s%n", row.getDimensionValues(0).getValue(), | ||
| row.getMetricValues(0).getValue()); | ||
| } | ||
| // [END analyticsdata_json_credentials_print_report] | ||
| } | ||
| } | ||
| } | ||
| // [END analyticsdata_json_credentials_quickstart] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...les/snippets/src/test/java/com/example/analytics/QuickstartJsonCredentialsSampleTest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| /* | ||
| * Copyright 2020 Google LLC | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package com.example.analytics; | ||
|
|
||
| import static com.google.common.truth.Truth.assertThat; | ||
|
|
||
| import java.io.ByteArrayOutputStream; | ||
| import java.io.PrintStream; | ||
| import org.junit.Test; | ||
| import org.junit.runner.RunWith; | ||
| import org.junit.runners.JUnit4; | ||
|
|
||
| /** | ||
| * Tests for quickstart sample. | ||
| */ | ||
| @RunWith(JUnit4.class) | ||
| public class QuickstartJsonCredentialsSampleTest { | ||
|
|
||
| private String ga4PropertyId = | ||
| System.getProperty("analyticsdata.quickstart.ga4PropertyId", "222596558"); | ||
|
|
||
| private String credentialsJsonPath = System.getenv("GOOGLE_APPLICATION_CREDENTIALS"); | ||
|
|
||
|
|
||
| private String runSample(String ga4PropertyId) throws Exception { | ||
| PrintStream stdOut = System.out; | ||
| ByteArrayOutputStream bout = new ByteArrayOutputStream(); | ||
| PrintStream out = new PrintStream(bout); | ||
| System.setOut(out); | ||
|
|
||
| // Run the test using default system credentials. | ||
| QuickstartJsonCredentialsSample.sampleRunReport(ga4PropertyId, credentialsJsonPath); | ||
|
|
||
| System.setOut(stdOut); | ||
| return bout.toString(); | ||
| } | ||
|
|
||
| @Test | ||
| public void testQuickstart() throws Exception { | ||
| // Act | ||
| String out = runSample(ga4PropertyId); | ||
|
|
||
| // Assert | ||
| assertThat(out).contains("Report result:"); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.