[google-appengine] Request help with enabling SSL for custom domain on Google App Engine

2018-01-17 Thread Anon
I've tried the basic steps I know of but still couldn't enable it (Google managed security not working, then uploaded my own keys but browser still says not secure). I posted this on Stack Overflow but have yet to fix the problem:

[google-appengine] Re: Duplicate Cache-Control headers for static assets

2018-01-17 Thread 'Taher (Cloud Platform Support)' via Google App Engine
Hi Nathan, As you have already raised an issue in our public issue tracker, I would suggest you get the update on your opened issue from there. On Wednesday, January 17, 2018 at 7:03:02 PM UTC-5, Nathan Fisher wrote: > > Hello, > > I think I've

[google-appengine] Re: Duplicate Cache-Control headers for static assets

2018-01-17 Thread Nathan Fisher
I've posted into the issue tracker as well. Not 100% certain if this will be considered a defect but it seems like it probably should be. On Wednesday, 17 January 2018 21:03:02 UTC-3, Nathan Fisher wrote: > > Hello, > > I think I've encountered an issue with the way Cache-Control headers are >

[google-appengine] Re: Unable to deploy via appcfg or gcloud

2018-01-17 Thread 'George (Cloud Platform Support)' via Google App Engine
What messages do you receive when deploying with the --verbosity debug parameter? It looks as if you are notified by means of the same "code=13" issue as covered in this Google Groups thread or this Public Issue Tracker

[google-appengine] Duplicate Cache-Control headers for static assets

2018-01-17 Thread Nathan Fisher
Hello, I think I've encountered an issue with the way Cache-Control headers are handled for static assets. Below are the "Steps to reproduce", "Expected result", and "Actual result". Steps to reproduce - 1. Create a static asset entry in app.yaml: ``` runtime: go

[google-appengine] Re: 502 Issue with @ComponentScan in java8 standard jetty environment and flexible

2018-01-17 Thread 'Jordan (Cloud Platform Support)' via Google App Engine
I would recommend starting with a base Spring application that works on App Engine. Once you have Spring working with all of the configurations in place for App

[google-appengine] Re: Unable to verify domain registered on Fatcow

2018-01-17 Thread NP
Thanks Vick, My friend followed up with fatcow and finally got the issue resolved (took some time though). On Monday, January 15, 2018 at 6:20:34 PM UTC-8, Vick Khera wrote: > > > > On Monday, January 15, 2018 at 8:48:42 PM UTC-5, NP wrote: >> >> Hi Vick, >> >> I just tried (using

[google-appengine] Re: Trouble with dispatch.yaml

2018-01-17 Thread Mike Hardy
Nailed it - thanks for the help Jeremy On Wednesday, January 17, 2018 at 10:36:53 AM UTC-8, Jeremy D wrote: > > First thought here is that because dispatch checks these routes *in > order,* you have a "/*" route ahead of "/notifications", so > no routes will ever reach notifications, because

[google-appengine] Re: Unable to deploy via appcfg or gcloud

2018-01-17 Thread Jeremy D
May have found the culprit. Possible that one of us working in dreamweaver or similar, that application stored a "Icon" system/hidden file and somehow that got checked into our version control. -- You received this message because you are subscribed to the Google Groups "Google App Engine"

[google-appengine] Re: Unable to deploy via appcfg or gcloud

2018-01-17 Thread Jeremy D
Early solution seems to be running imageoptim on a number of image files we have. These images haven't been touched in _months_ so I'm not sure why this problem is happening now but, cleaning those images of various meta data seemed to do the trick. On Wednesday, January 17, 2018 at 1:18:17

[google-appengine] Re: Trouble with dispatch.yaml

2018-01-17 Thread Jeremy D
First thought here is that because dispatch checks these routes *in order,* you have a "/*" route ahead of "/notifications", so no routes will ever reach notifications, because your wildcard hits it first. Move the notification route ahead of the wildcard, and you should be good. -- You

[google-appengine] Unable to deploy via appcfg or gcloud

2018-01-17 Thread Jeremy D
We can't seem to deploy our application, out of the blue, as of yesterday afternoon. appcfg only returns a 400 bad request error, no other information given. Below is a copy of what gcloud returns, seems to offer a bit more detail but nothing we can seem to solve on our end. *Nothing* about

[google-appengine] Re: Can I make an app that uses the api.ai service?

2018-01-17 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
Use of Google Cloud Endpoints can be a solution to implement a similar app on GAE. It helps you manage your APIs using the same infrastructure Google uses for its own APIs and use any language and framework to write an API. -- You received this message

[google-appengine] Trouble with dispatch.yaml

2018-01-17 Thread Mike Hardy
Hi There, we're having issues with dispatch.yaml. We have two environments (staging and production) with 3 services each. The staging dispatch.yaml has no issues, and the production dispatch.yaml is working for all services, except li-notifications. When visiting li-notifications, the default

[google-appengine] Can I make an app that uses the api.ai service?

2018-01-17 Thread NESTOR FABIAN ROBLES
I have two .php files, one api.ai class that accesses the api.ai service, and the other php file that receives POST requests from users. Can I implement something similar in Google App Engine? Sorry for my English -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: I can't get data from Datastore in App Engine but can add and delete

2018-01-17 Thread Cesar SC
THIS CODE WORKS! //WORKS app.post('/getuserpost', (req, res) => { const query = datastore.createQuery('usersData').filter('girl', req.body. girl_field); datastore.runQuery(query).then((results) => { const entities = results[0]; datastore.get(entities[0][datastore.KEY], (err, entity) => { if