47,658 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-1
votes
0
answers
42
views
Deploy will take place "exclusively" outside the Play Store (sideloading): can I use Google Cloud, App Engine and Play Billing? [closed]
I'm developing an app that offers monetization through in-app purchases.
PREMISES
I'm developing my app in MIT App Inventor.
I plan to create a website for deploy and do SEO work, so deploy will take ...
1
vote
0
answers
27
views
How to get geo location headers (country, region, city) in Cloud Run Gen2 like App Engine headers?
Previously, I was using Cloud Functions (Gen1), and I could access App Engine–specific headers such as:
X-Appengine-Country X-Appengine-Region X-Appengine-City X-Appengine-Citylatlong
These were ...
1
vote
0
answers
45
views
google.appengine.runtime.apiproxy_errors.RPCFailedError Attempted RPC call without active security ticket
I'm receiving the error below with a google app engine search. This error appears to have started recently and is repeatable.
Can I ask for a breadcrumb to help interpret/find root cause?
Was ...
0
votes
0
answers
128
views
Jakarta EE 10 JSP: NoClassDefFoundError: jakarta/servlet/jsp/tagext/Tag when using JSTL
I have a Jakarta 10 application which i deploy to google app engine standard java runtime 21. With the current dependencies JSP has been working well along with jstl tags. This is a snippet of my pom....
0
votes
1
answer
91
views
Does appengine support WebSocketServer?
The google appengine documentation states websockets are supported, but in their example they use socket.io instead of a "regular" WebSocketServer.
my (simplified) nodejs server is super ...
0
votes
1
answer
59
views
Why can't we turn off IAP for just one service in Google Cloud App Engine?
My Plan
I’m deploying a React frontend and a Flask backend on App Engine.
I want to use dispatch.yaml to send traffic from the frontend to the backend and hide the backend URL, so users can’t see or ...
0
votes
1
answer
58
views
Assistance needed in deploying to Google App Engine
I have successfully deployed a spring boot application deployed in google cloud app engine flex environment on May 20, 2025. I tried to deploy same version of the application without any success on ...
0
votes
1
answer
102
views
What options are used to run npm install in Google App Engine
Does anybody know if Google App Engine (GAE) runs the npm install in dev mode even when NODE_ENV is set to production (regardless if it is set by default or explicitly in the app.yaml)? Or the broader ...
-1
votes
1
answer
77
views
NODE_ENV in Google App Engine in TypeScript apps (React)
How does GAE (Google App Engine) treat NODE_ENV on deployment and run with a NodeJS runtime?
Google docs clearly states that some variables are automatically set and cannot overridden except the `...
0
votes
0
answers
70
views
Entity.put error after Python 3 migration for Google Data Store - refactored
I have the code below to update an entity in the Google data store.
I'm now getting an internal error on the model.Collection.put(vhighest)
sync.yaml
service: sync
instance_class: F2
...
1
vote
1
answer
71
views
NDB Python Error returning object has no attribute 'connection_from_host'
I have the code below which is built on top of ndb.
When running I receive the two errors below.
Can I ask for some guidance, specifically what is the connection_from_host referring to?
import flask
...
1
vote
1
answer
66
views
Google App Engine Shim? NDB Middleware receiving an error
I have the following sync service written as a microservice.
Per the google cloud instructions I could add the middleware? shown at the bottom as a type of shim? I don't have a good mental model of ...
0
votes
1
answer
75
views
Sync Job with Google App Engine produces error after python 3 migration
I am deploying this sync service.
I thought that after the python 3 migration adding this prevents such an error.
client = ndb.Client()
I am not sure how to interpet the error. For the controller ...
0
votes
1
answer
130
views
Python Error in NDB after python 3 upgrade
I am working on some code that was recently upgrade from python 2 to python 3 that is part of google app engine.
Can I ask for some assistance tracing this? I do not know if this is because something ...
0
votes
1
answer
21
views
How to deal with GCP GAE's 1000 files per folder limit when deploying nuxt application?
Google App Engine (GAE) enforces a limit of 1,000 static files per directory during deployment. Nuxt's .output/public/_nuxt folder often contains more than 1,000 hashed static assets (JS/CSS chunks, ...