[google-appengine] Re: Error 403 with Android restricted Cloud Platform API key and Cloud Endpoints

2018-05-16 Thread Thành Nguyễn Xuân
I'm facing the same issue . Are you resolve it ? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to t

Re: [google-appengine] gcloud beta app deploy : This deployment has too many files

2018-05-16 Thread Ani Hatzis
Hi, well, that doesn't sound like 10,000+ files. If it's a bug you could file a report in the Public Issue Tracker . Is there a particular reason that you use gcloud *beta* app deploy instead of gcloud app deploy? The first one gives you the commands that are

[google-appengine] dev_appserver now compatible with Cloud Datastore Emulator.

2018-05-16 Thread 'Steren Giannini' via Google App Engine
Dear App Engine users, We are pleased to announce that the App Engine local development server (dev_appserver) is now compatible with the Cloud Datastore Emulator . You can opt-in to this feature by running: * dev_appserver.py --su

Re: [google-appengine] gcloud beta app deploy : This deployment has too many files

2018-05-16 Thread Lourdu rajan
Hi Ani Hatzis, Thanks for your reply. I don't have any process like file storage or file processing. Just trying to deploy my code into the Google app engine flexible environment, which has basic functionality and it's reference. Like, app.yaml, openapi.yaml, app.js, db.js, package.json and node

[google-appengine] Re: Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-16 Thread 'George (Cloud Platform Support)' via Google App Engine
There are other ways to install the Cloud SDK, the preferred one is in conjunction with installing Cloud Tools for Eclipse. While installing the tools, it searches your computer for the Cloud SDK. If it can't find the SDK, then it automatically downloads the latest version of the SDK. It also p

[google-appengine] Re: Stuck using script to copy a row to a logs sheet

2018-05-16 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
This thread is reserved for Google Cloud Platform products and services . For Google Apps Script, you can contact the support page here . -- You received this message because you are subscribed to the Google

[google-appengine] Re: Whitelisting an application hosted in Google app engine

2018-05-16 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
+1 on Nicola's answer. App Engine will make outgoing HTTP requests from a subset of the addresses returned by the TXT records. Note that these can change at any time, so you can't simply fetch the list as it stands now and assume that will continue to be the case. IP-based authentication is a

Re: [google-appengine] Whitelisting an application hosted in Google app engine

2018-05-16 Thread Sanooj Karanath Sachidanandan
Agree that there is no static IPs or Not recommended . Question is what is the recommended way for whitelisting applications hosted in app engine? Regards Sanooj On Wed, May 16, 2018 at 12:43 PM, 'Nicola Spreafico' via Google App Engine < google-appengine@googlegroups.com> wrote: > Hi, > please

Re: [google-appengine] Whitelisting an application hosted in Google app engine

2018-05-16 Thread 'Nicola Spreafico' via Google App Engine
Hi, please note the due to App Engine nature, there is no a single IPs. There is a way to retrieve the interval of App Engine IPs, but is not recommended. https://cloud.google.com/appengine/kb/ Look for the section "*Static IP Addresses and App Engine apps*" Il giorno mer 16 mag 2018 alle ore 18:

[google-appengine] Set up Google Cloud SDK or App Engine SDK or both for development?

2018-05-16 Thread Grass CFA
Hi, I am setting up a dev environment on Eclipse Neon.3 for App Engine development. According to the Google Cloud Platform documentation, developers will need to download and install Google Cloud SDK through Eclipse Marketplace. Developers will also need to download and install the App Engin

[google-appengine] Stuck using script to copy a row to a logs sheet

2018-05-16 Thread Rob Balneaves
Hi, I'm attempting to copy a row to another sheet on edit when the user clicks yes. So far I've got this script which I'm trying to modify to lose the var name col = 9 so instead of it trying to find the sheet name to copy to from column 9 I'd like it to be copied to the sheet name logs. Spent

[google-appengine] Whitelisting an application hosted in Google app engine

2018-05-16 Thread Sanooj KS
hi , We do have an application hosted in google app engine . Another application is asking for IP ranges to whitelist our application . I believe we don't have a static ip range in app engine . So what is the recommended way to achieve it? Regards Sanooj -- You received this message because y

[google-appengine] Re: Using App Engine Flexible behind a CDN (Fastly)

2018-05-16 Thread Alex G
Just another update here. I've realized that I was missing an SNI in the Fastly request to the origin. You can test this with the following command (ensure your *curl* is up to date): curl --resolve ghs.googlehosted.com:443:mydomainA.com https://mydomainB.com/ -v -I Basically, if there is a va

[google-appengine] Re: Using App Engine Flexible behind a CDN (Fastly)

2018-05-16 Thread Alex G
So far, this is what we have found out when choosing the origin host of our CDN (Fastly): - myapp.appspot.com: Supports TLS but requires the Host HTTP header to be exactly "myapp.appspot.com". Therefore, the Host header needs to be overridden. - ghs.googlehosted.com: Does not suppor

[google-appengine] Re: read that only Python, Java, and Go are supported

2018-05-16 Thread Ani Hatzis
That was true a few years ago. Today PHP is supported by both, the standard environment and the flexible environment of App Engine. Look into the comparison of the two PHP environments to pick the best one for your app. Generally speaking, while th