[google-appengine] Re: time.Time Location change when saving and retreiving

2016-06-17 Thread JohnGB
Some information that I should have included in the original post: - This happens in tests, but I haven't yet confirmed whether it happens in the live server. On Friday, June 17, 2016 at 2:10:22 PM UTC+2, JohnGB wrote: > > I'm using Go with SDK version 1.9.37 > > > I'm seeing som

[google-appengine] time.Time Location change when saving and retreiving

2016-06-17 Thread JohnGB
I'm using Go with SDK version 1.9.37 I'm seeing something odd when testing the datastore with entities which have a time.Time field. I create the time with time.Now().UTC().Truncate(time.Millisecond), and then save it. When I retrieve the entity, the time is correct, but the

[google-appengine] Batch querying the datastore (with Go)

2016-05-27 Thread JohnGB
I'm using the Go 1.9.37 SDK with App Engine Classic (in case that matters to the answer). I have some entities of type "user", which have one or more unique email addresses associated with each entity. Given a list of email addresses, I would like to look up some simple data from the

[google-appengine] Re: Unsecured request by the taskqueue

2016-03-03 Thread JohnGB
m/p/google-cloud-platform/issues/list>. Those > issue trackers are triaged regularly and you should see a response > relatively quickly. > > Best wishes, > > Nick > Cloud Platform Community Support > > On Thursday, March 3, 2016 at 10:53:36 AM UTC-5, JohnGB wrote: &

[google-appengine] Unsecured request by the taskqueue

2016-03-03 Thread JohnGB
It seems that the calls from the push taskqueue are made using an unsecured HTTP, and not a HTTPS connection. Given that sensitive information is often passed on the taskqueue, is it possible to change this? -- You received this message because you are subscribed to the Google Groups "Google

[google-appengine] Re: Payload structure in the taskqueue

2016-03-03 Thread JohnGB
It seems that the payload was not the problem. The problem is that the request from the taskqueue comes in as an unsecured connection (HTTP instead of HTTPS), which was being rejected by our app. On Wednesday, March 2, 2016 at 11:22:27 PM UTC+1, JohnGB wrote: > > I'm using Go, and I'm

[google-appengine] Payload structure in the taskqueue

2016-03-02 Thread JohnGB
I'm using Go, and I'm trying to place a task on the taskqueue which has some JSON encoded content in the body. However, I seem to be getting 301 responses, and it seems to be related to the Task.Payload. The code that I'm using is structurally as the code below, with `am` being a struct with

[google-appengine] Headers being stripped from POST to a blobstore uploadURL

2016-02-19 Thread JohnGB
Note: This is a crosspost from google-appengine-go as I wasn't sure which group would be more applicable as I'm using Go, but I don't think the language has anything to do with this issue. My understanding of the docs, as well as how it has worked up until about the last week is: 1. when