All Questions
Tagged with google-api-java-client google-app-engine
89 questions
0
votes
1
answer
755
views
Excluding the transitive com.google.http-client:google-http-client:1.42.1 child dependency from included dependencies in Gradle
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 ...
8
votes
5
answers
12k
views
java.lang.NoSuchMethodError: com.google.api.client.http.HttpTransport.isMtls()Z
I have an application I deploy on appengine using java8.
Lately when I tried deploying I get this error on run time:
Uncaught exception from servlet
java.lang.NoSuchMethodError: com.google.api.client....
0
votes
1
answer
52
views
Actions On Google Deployment using webhook
I am using Java Client Library to use google Dialogflow. My questions is what happens when we use "appEnginedeploy" using gradle? Where is the code stored and more importantly how the implemented ...
0
votes
1
answer
590
views
User Consent Screen Shows Up After Access Token Expires
I am trying to integrate Google Calendar API in one of my Google App Engine project based off Spring Boot. Using JAVA based google-client-api library for authorization. I provide the client id and ...
0
votes
2
answers
74
views
'com.google.appengine.api.backends.BackendService' is deprecated alternative
'com.google.appengine.api.backends.BackendService' is deprecated less...
This inspection reports where deprecated code is used in the specified inspection scope. I am getting this error when I am ...
0
votes
1
answer
225
views
Irritating Google API Client (Java) Issues
So what I'm doing requires that I hit a document with the google sheets api, grab a sheet, pull data from it, and generate another sheet. So initially I followed an example using a service account as ...
2
votes
1
answer
4k
views
error: cannot find symbol class GoogleAccountCredential
By Android build is failing with following error -
Error:(23, 68) error: package com.google.api.client.googleapis.extensions.android.gms.auth does not exist
Error:(60, 20) error: cannot find symbol ...
1
vote
0
answers
144
views
webclient appengine works locally but throws exception on Google Cloud appengine
webclient oauth2 for accessing google drive by appengine works on localhost appengine
but on google cloud app engine throws exception.
static GoogleAuthorizationCodeFlow initializeFlow() ...
3
votes
1
answer
2k
views
Authenticate service account without downloaded key on google app engine
I am working on a product that is supposed to be installed in Google App Engine.
In this I am using Service account for authenticating Gmail API, Drive API, Calendar API etc.
Its working fine with ...
0
votes
1
answer
2k
views
GoogleIdTokenVerifier does not return name, picture, etc
We're using the goole-client-api library to verify google accounts from our backend. This implementation runs on Google Cloud Platform (GCP) using App Engine and DataStore.
What we're seeing so far ...
1
vote
3
answers
550
views
Google App Engine does not support vision api Runtime.addShutdownHook error
my code looks like which throws the exception i have no idea about:
@ApiMethod(name = "analyzeImage")
public Message analyzeImage(@Named("imgURL") String imgURL) {
try {
...
1
vote
1
answer
490
views
Error 403 with Android restricted Cloud Platform API key and Cloud Endpoints
I have a problem restricting a Google Cloud Platform API key usage to an Android app: I have added its package name and certificate SHA-1 fingerprint (the debug one to get started) but it doesn't work....
1
vote
0
answers
310
views
getServingUrl() Method using Google Cloud Storage value in Java throws exception
I have been trying the code block to generate Google Cloud image url using Java, where my-bucket is the Google Storage bucket name.
String key = "/gs/Buckets/my-bucket/photo/1/content.jpeg";
...
0
votes
1
answer
1k
views
URL not found when running sample code
I'm trying to run a sample that I took from Google to see if I could access Google+ from App Engine. I added the following files to my project and set up the servlet mapping so that they are available ...
2
votes
2
answers
4k
views
How to use the Google cloud platform service account key generated using serviceAccounts.keys.create API, at the client side in Java?
I am using the service account key generated in GAE using the serviceAccounts.keys.create Google IAM API at the client side to upload files to GCS. This API returns privateKeyData field which I am ...