Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
96 views

I want to download the google calendar events into my tool, to show them in a calendar developed in Angular. The tool is composed by an Angular frontend and a Java Spring Boot backend. I successfully ...
King Midas's user avatar
  • 1,749
0 votes
1 answer
54 views

Use a JSON service account key file to connect to a Google API. Currently, AI generates bad code and searches are noisy with the variety of alternate authentication schemes.
F. P. Freely's user avatar
  • 1,166
0 votes
1 answer
139 views

In response to Google's recent change to disallow username/password access to Google Workspace accounts from Google Cloud VM-instances, I am attempted to replace sendmail calls with Google API calls ...
jn4's user avatar
  • 53
0 votes
0 answers
48 views

I'm porting my app from Windows (where it works) to Linux (where it doesn't work). I can't figure out why, but my firewall is pretty strict. What port and protocol are being used to return the ...
Todd's user avatar
  • 3,052
0 votes
0 answers
85 views

Just some context - Im creating app to merge my family calendars from different sources. I want to setup some google component but I have a problem. My code is pretty straight forward. First enter is: ...
user2188158's user avatar
0 votes
1 answer
111 views

I have the following versions <dependency> <groupId>com.google.api-client</groupId> <artifactId>google-api-client</artifactId> ...
HeronAlgoSearch's user avatar
0 votes
0 answers
369 views

I have GKE cluster that uses a custom service-account. I'm using it to access Google API (Gmail API). But, when I use final List<String> SCOPES = List.of(GmailScopes.GMAIL_READONLY); ...
anz's user avatar
  • 1,072
1 vote
1 answer
60 views

Using Google API with Java for Google Docs, we can access classes like TextRun, ParagraphElement, etc. and set the values, for example, as follows: TextRun txtRun = new TextRun(); txtRun.setContent(&...
Ken D's user avatar
  • 11
1 vote
1 answer
128 views

I am using the Java Gmail API to retrieve some email messages. Once I get a list of messages, I am using batching to get the individual messages info. Sample code as follows: List<MessageDto> ...
Swordfish's user avatar
  • 1,279
1 vote
1 answer
57 views

I trying to send this request to get the channel request = youtube.search().list("snippet"); request.setMaxResults(50); request.setQ(channelName); request.setType("channel"); we ...
Raneen Bsais's user avatar
1 vote
0 answers
58 views

I'm testing Google Calendar authentication-related logic in Java. I'm not sure if I'm misunderstanding the concept, but I've been unable to resolve the issue for several days now. My code is as ...
recadro's user avatar
  • 11
0 votes
1 answer
193 views

I'm trying to get a list of files' data from Drive. Following the google's example didn't work. This is an example of my code: private static final JsonFactory JSON_FACTORY = GsonFactory....
lohan's user avatar
  • 9
2 votes
2 answers
640 views

I am writing an application that uses the Spreadsheets API. Because I am using the write scope, which is sensitive, the OAuth2 redirect URI must use https instead of http (except when using localhost)....
kvitso's user avatar
  • 328
0 votes
1 answer
263 views

I am connecting a Springboot application on my local computer to GCP Cloud SQL, using Spring cloud dependency com.google.cloud:spring-cloud-gcp-starter-sql-postgresql:4.8.2 The dependency is trying to ...
at9pm's user avatar
  • 1
0 votes
1 answer
154 views

Our web application, developed in JSF, allows its users to schedule meetings in their calendar. The goal is that in the application settings, each user can integrate their Google account, so that the ...
Rekillme Re's user avatar
0 votes
1 answer
2k views

Background I have built a mod for Minecraft, and I am now at the point where it is ready to be built into a jar and run it in the game. My IDE is Intellij, the framework I am using is Fabric, and I am ...
xxhawk8xx's user avatar
2 votes
1 answer
2k views

I am developing a java Springboot web application. In Which I have multiple users that login with a adress mail and a password. The login is Ok. @Override protected void configure(HttpSecurity http) ...
Rekillme Re's user avatar
0 votes
1 answer
75 views

public static Credential authorize(final NetHttpTransport httpTransport) throws IOException { InputStream in = new FileInputStream(CLIENT_SECRETS); GoogleClientSecrets clientSecrets = ...
Sinio's user avatar
  • 29
1 vote
0 answers
990 views

I am trying to generate a report using the Data API of GA4. However, I could not manage to add multiple metrics or dimensions to my report builder. This is how I try to achieve this functionality: ...
Denizcan Yılmaz's user avatar
1 vote
2 answers
771 views

I changed Google Analytics to Ga4 The administrator is pulling statistics through the api and using it. API is using v4, so I think it's compatible with ga4. Follow the manual to connect to Google ...
SsenGom's user avatar
  • 23
0 votes
1 answer
318 views

I'm trying to integrate Google Calendar API and I've been able to configure the API using a Service Account with its ID and I've already shared my calendar with the new IAM email address that was ...
Yusuf Musa's user avatar
0 votes
1 answer
72 views

I'm using the Gdrive Java API and the code I have to list a directory is: FileList result = driveService.files().list() .setPageSize(100) .setFields("nextPageToken, files(...
user2395365's user avatar
  • 2,199
0 votes
1 answer
141 views

I tried to use with dependency version google-cloud-secretmanager 2.13.0. is there anyone can help with this? Here is util class to get secret manager value. public String get(String secretName) { ...
Chan Myae Aung's user avatar
1 vote
1 answer
2k views

I have followed all the steps outlined in https://developer.android.com/google/play/integrity/setup#integrate-into-app to add Play Integrity to my Android library. Configured the app using this ...
rysv's user avatar
  • 3,532
0 votes
1 answer
417 views

I encounter this exception while trying to decode the Play Integrity token on the server side: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find ...
rysv's user avatar
  • 3,532
1 vote
0 answers
1k views

I am using the Java Client Library to handle Google authentication for my app. Below is the code to handle the authentiation. It is almost exactly the same as the code featured on the Java quickstart, ...
Shynee's user avatar
  • 11
2 votes
2 answers
885 views

Hi I am trying to use Google Calendar client with GoogleCredentials but not able to find any docs on how to make this work. Please add a doc or let me know how to make it work. package com.example; ...
Amit's user avatar
  • 29
0 votes
0 answers
160 views

I am trying to query a list of root files and folders which are owned by me and along with items which are shared with me. So I am using this query - ((not 'me' in owners and sharedWithMe) or 'root' ...
Aman Singh's user avatar
1 vote
1 answer
606 views

Been browsing for a while but can't find concrete answer whether the Java implementation of the Youtube Data API includes handling rate limits out of the box or is this something one has to account ...
davidoh9's user avatar
1 vote
2 answers
1k views

i'm trying to integrate the google login function on my website and i'm following the relative google doc for the server side token validation: https://developers.google.com/identity/gsi/web/guides/...
Giacomo's user avatar
  • 11
0 votes
1 answer
221 views

When trying to upload a video using YouTube Data API, I get: Exception in thread "main" com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 Bad Request POST https://www....
Luís Soares's user avatar
  • 6,242
0 votes
1 answer
181 views

i want insert text to table 2x3, when insert text with new rows i see strange behavior. How to calculate correct index to insert content in tablecell, or document for that? List<Request> ...
MinhSu - Justin's user avatar
5 votes
0 answers
164 views

I am using GoogleDrive's V2 java client library to list the files from my GDrive. I am getting the below error from Google end frequently. { "code" : 500, "errors" : [ { &...
Vijay's user avatar
  • 141
1 vote
2 answers
453 views

I have this dependency <dependency> <groupId>com.google.apis</groupId> <artifactId>google-api-services-dataflow</artifactId> <version>v1b3-rev20221025-2....
Atanas S.'s user avatar
1 vote
1 answer
1k views

I am reading the analytics data using API call found in this link Google Analytics Data API (GA4) What is the google delay to return all the info? for example, at 5 Am can I be sure I am receiving ...
Shila Mosammami's user avatar
0 votes
1 answer
594 views

I'm working on an android app that interfaces with a google sheet. I was following the api documentation for writing values to certain cells but I'm getting this error here: Caused by: java.io....
Elliot Scher's user avatar
1 vote
1 answer
274 views

I started to create an application for posting vacancies in jobs.google. I can not find an open api in order to post these vacancies directly on jobs.google through it. Tell me how to do it. I found a ...
Alexander's user avatar
  • 147
0 votes
1 answer
160 views

When I use this api: getTagManager().accounts().containers().create(accountPath, container).execute(); return: Caused by: com.google.api.client.googleapis.json.GoogleJsonResponseException: 404 Not ...
鸣泽高's user avatar
1 vote
0 answers
202 views

I am reading the GA4 info according to the code sample provided here in Google Developers Documentation. I do not know how to check if there are more pages? looking at the result's size I guess I am ...
Shila Mosammami's user avatar
0 votes
1 answer
189 views

Can my app update google calendar recipient meeting, if the recipient has given access to the service account of the App? When I try to do that, I get this message: Exception thrown: 403 Forbidden ...
Nisarg's user avatar
  • 21
0 votes
1 answer
857 views

I'm trying to get authorization through a Service Account to Google Sheets (No confirmation window). I can't find any information about it. If I use the method from https://developers.google.com/...
Vladislava Soboleva's user avatar
6 votes
0 answers
1k views

I am using Google Drive's java Client Library to list and download files from my application. When trying to list files, I am getting 500 Internal Server error from Google. { "code" : 500, &...
kv stack's user avatar
0 votes
1 answer
174 views

I need to create some events and upload them to a google calendar. Now I have hit an unforeseen bump, as the times and timezone offset gets changed automatically, once uploaded. I am working with a ...
Stef's user avatar
  • 446
0 votes
1 answer
774 views

I'm facing this weird java.lang.NoSuchMethodError in my Groovy project, and I have it pretty much down to that there's some transitive grand-child dependency, that is being included by multiple child ...
Mike Warren's user avatar
  • 3,910
1 vote
0 answers
166 views

We are using Google's Gmail API (https://gmail.googleapis.com/gmail/v1/users/{userId}/history) in our application and the API is returning Certificate with different CNs: sometimes the CN is “google....
Nikhil's user avatar
  • 11
1 vote
1 answer
873 views

This my application worked successfully before. The issues appeared despite I did not change any application code. Neither I did any changes in the drive api console. Currently it is being ...
user299702's user avatar
1 vote
0 answers
763 views

Problem In trying this quickstart example, and of course, refactoring it to my needs/coding style, I am facing this weird Error: Test Cases/Unit Tests/SMDEmailUtils FAILED. Reason: java.lang....
Mike Warren's user avatar
  • 3,910
7 votes
3 answers
4k views

I've been working on a little project that connects to the user's Gmail inbox and reads the mails using google-api-client 2.0.0 and google-api-services-gmail version v1-rev20220404-2.0.0 When I try to ...
Giovanni Grana's user avatar
-1 votes
1 answer
788 views

I making an app using google drive to store files for user to their google drive I followed google developer guide in https://developers.google.com/drive/api/guides/about-sdk and when i press the ...
Arash Torkaman's user avatar
1 vote
2 answers
452 views

I have created one poc using Gmail API which read all email and print on console. I have take refrence from Gmail api Java quickstart. I have follows all the steps like create project, Gmail API ...
Bhautik Sakhiya's user avatar

1
2 3 4 5
24