[google-appengine] Re: urlfetch.fetch reporting inconsistent results?

2016-03-23 Thread Diego Marchi
Hello Luciano,

thanks for your answer. As you suggested I've upgraded my local 
dev_appserver version to 1.9.34.

*GraphMethodException* is related to a search that cannot be served by the 
Graph API since there is no handler for it. I don't think this is the case 
since, as mentioned, I can access the same url I query from the GAE 
instance, using CURL and in that case I obtain a valid result and not an 
exception. 
It works also on my local instance, when I use the interactive console and 
use urlfetch.fetch. It also works when I fetch the sm API url from inside 
my program on my local machine.

Summarizing:
- from terminal: 
curl 
"https://graph.facebook.com/v2.3/184277601936688?access_token=xxx"; 
*WORKS*

- from local instance:
from google.appengine.api import urlfetch


u = urlfetch.fetch(
"https://graph.facebook.com/v2.3/184277601936688?access_token=xxx";)
print u.content
*WORKS*

*- *from local instance program runs and visits API endpoint: *WORKS*

- from GAE remote instance
from google.appengine.api import urlfetch

u = urlfetch.fetch(
"https://graph.facebook.com/v2.3/184277601936688?access_token=x";)

print u.content
*DOES NOT WORK*

*- *from remote instance program runs and visits API endpoint: *DOES NOT 
WORK* 

At the present time, I cannot find the problem. I thought it could be that 
facebook just cut off requests coming from GAE or certain ips... but it 
does NOT happen for all the facebook ids I try to query, only for some of 
them.


On Thursday, March 17, 2016 at 10:09:26 PM UTC-7, Luciano Pacheco wrote:
>
> Hello Diego,
>
> I'm Luciano from Google Cloud Support.
>
> The issue mentioned on the email you that received yesterday has been 
> fixed. So the error you're experiencing is unrelated.
>
> I searched online for "facebook graphapi GraphMethodException" and it 
> seems related to some permissions on the Facebook app or entity being 
> updated, see this stackoverflow question 
> 
>  for 
> example.
>
> I also suggest you to upgrade your local environment from 1.9.20 to our 
> latest version 1.9.34 .
>
> Cheers,
>
> Luciano Pacheco
>
> On Friday, March 18, 2016 at 5:26:13 AM UTC+11, Diego Marchi wrote:
>>
>>
>> urlfetch.fetch is reporting inconsistent results when querying the 
>> facebook graph api. If I curl the same URL from my terminal, it works fine. 
>> It works ok also using the local instance of the GAE with dev_appserver.py.
>>
>> I am using a mac and the dev_appserver version on my local is 1.9.20. I 
>> am using Python.
>>
>> I cannot share the access token, but the url I am trying to reach is "
>> https://graph.facebook.com/v2.3/184277601936688"; - from the remote 
>> instance I saw the logs reporting this:
>> {
>>"error": {
>>   "message": "Unsupported get request. Please read the Graph API 
>> documentation at https://developers.facebook.com/docs/graph-api";,
>>   "type": "GraphMethodException",
>>   "code": 100,
>>   "fbtrace_id": "He4bs+MI7Qs"
>>}
>> }
>>
>> but with curl and also on my local instance, I get a proper response and 
>> a JSON document.
>>
>> anybody has any advice on this? I received an email yesterday from 
>> google, stating that url_fetch has some inconsistend behaviour and I 
>> believe I stumbled in it. They say to contact their support in this case 
>> but where can I reach them?
>>
>> Thanks
>>
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b5887a02-b09b-4f44-81e1-48b45e768800%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: urlfetch.fetch reporting inconsistent results?

2016-03-23 Thread Joshua Johnston
See 
http://stackoverflow.com/questions/6843796/graph-api-returns-false-or-unsupported-get-request-accessing-public-facebook
 
and 
http://stackoverflow.com/questions/13739609/unsupported-get-request-in-facebook-graph-api
 
on stack overflow.

It may be restrictions set on the page around Country / Age / Page 
Visibility. It may also be because the page does not have enough likes yet 
(< 25)

On Wednesday, March 23, 2016 at 1:06:33 PM UTC-4, Diego Marchi wrote:
>
> Hello Luciano,
>
> thanks for your answer. As you suggested I've upgraded my local 
> dev_appserver version to 1.9.34.
>
> *GraphMethodException* is related to a search that cannot be served by 
> the Graph API since there is no handler for it. I don't think this is the 
> case since, as mentioned, I can access the same url I query from the GAE 
> instance, using CURL and in that case I obtain a valid result and not an 
> exception. 
> It works also on my local instance, when I use the interactive console and 
> use urlfetch.fetch. It also works when I fetch the sm API url from inside 
> my program on my local machine.
>
> Summarizing:
> - from terminal: 
> curl "
> https://graph.facebook.com/v2.3/184277601936688?access_token=xxx"; 
> *WORKS*
>
> - from local instance:
> from google.appengine.api import urlfetch
>
>
> u = urlfetch.fetch("
> https://graph.facebook.com/v2.3/184277601936688?access_token=xxx";)
> print u.content
> *WORKS*
>
> *- *from local instance program runs and visits API endpoint: *WORKS*
>
> - from GAE remote instance
> from google.appengine.api import urlfetch
>
> u = urlfetch.fetch("
> https://graph.facebook.com/v2.3/184277601936688?access_token=x";)
>
> print u.content
> *DOES NOT WORK*
>
> *- *from remote instance program runs and visits API endpoint: *DOES NOT 
> WORK* 
>
> At the present time, I cannot find the problem. I thought it could be that 
> facebook just cut off requests coming from GAE or certain ips... but it 
> does NOT happen for all the facebook ids I try to query, only for some of 
> them.
>
>
> On Thursday, March 17, 2016 at 10:09:26 PM UTC-7, Luciano Pacheco wrote:
>>
>> Hello Diego,
>>
>> I'm Luciano from Google Cloud Support.
>>
>> The issue mentioned on the email you that received yesterday has been 
>> fixed. So the error you're experiencing is unrelated.
>>
>> I searched online for "facebook graphapi GraphMethodException" and it 
>> seems related to some permissions on the Facebook app or entity being 
>> updated, see this stackoverflow question 
>> 
>>  for 
>> example.
>>
>> I also suggest you to upgrade your local environment from 1.9.20 to our 
>> latest version 1.9.34 .
>>
>> Cheers,
>>
>> Luciano Pacheco
>>
>> On Friday, March 18, 2016 at 5:26:13 AM UTC+11, Diego Marchi wrote:
>>>
>>>
>>> urlfetch.fetch is reporting inconsistent results when querying the 
>>> facebook graph api. If I curl the same URL from my terminal, it works fine. 
>>> It works ok also using the local instance of the GAE with dev_appserver.py.
>>>
>>> I am using a mac and the dev_appserver version on my local is 1.9.20. I 
>>> am using Python.
>>>
>>> I cannot share the access token, but the url I am trying to reach is "
>>> https://graph.facebook.com/v2.3/184277601936688"; - from the remote 
>>> instance I saw the logs reporting this:
>>> {
>>>"error": {
>>>   "message": "Unsupported get request. Please read the Graph API 
>>> documentation at https://developers.facebook.com/docs/graph-api";,
>>>   "type": "GraphMethodException",
>>>   "code": 100,
>>>   "fbtrace_id": "He4bs+MI7Qs"
>>>}
>>> }
>>>
>>> but with curl and also on my local instance, I get a proper response and 
>>> a JSON document.
>>>
>>> anybody has any advice on this? I received an email yesterday from 
>>> google, stating that url_fetch has some inconsistend behaviour and I 
>>> believe I stumbled in it. They say to contact their support in this case 
>>> but where can I reach them?
>>>
>>> Thanks
>>>
>>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/eca57874-f5c5-43a5-8591-d8a7299b0b2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] App Engine Security

2016-03-23 Thread Fendy Jong
Hi,

I am new to App Engine and lacking a lot about security.

I just watch GCP Live 2016. Google kept on mentioning that the security is 
automatically handled. I am just wandering, does that means I don't have to 
configure App Engine security anymore? If it requires configuration, what 
kind of configuration that I need to do? Thank you

Best regards,
Tjin Fendy

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4ca4e20d-033c-4541-adfc-055680ab85eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: urlfetch.fetch reporting inconsistent results?

2016-03-23 Thread Kaan Soral
As a very sincere suggestion, try not to build anything for fb at all, if 
you can (and for instagram/twitter for that matter)

It's basically a trap for developers, you waste your resources (i), there 
is no positive outcome at all, even if you manage to get a positive 
outcome, it will be terminated with various excuses and sometimes no 
excuses at all

More on topic, unexplainable fb api failures are pretty common, I just 
ignore them at this point, try not to lose time on it, if it's not mission 
critical, in some months, it may even fix itself, even if you report it to 
fb and it gets accepted as a bug, don't expect a swift solution (because 
(i))

The only valid fb api usage at this point is b2b apps, where the 
end-business is the ones that are trapped, like page owners etc., you might 
profit from selling apps to them while their waste their times with their 
fb pages, even in this case, if you are not at the point of no return, 
return and do something useful :)

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d7e5bdba-37cb-4c54-bf18-4b8669abb5ee%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Content-Length response header

2016-03-23 Thread 'Nicholas (Google Cloud Support)' via Google App Engine
Thanks for the additional information. I'll attempt a little further to 
reproduce the issue and reach out if I require additional information. I 
will get back to you either way within the next few days.

On Saturday, March 12, 2016 at 6:06:50 AM UTC-5, Linus Larsen wrote:
>
> Sometime yesterday (10th), our clients started to behave strage. After 
> some investigation it seems like Google decided to remove the Content-Length
> header from the http responses. The request / response messages between 
> our clients are actually small protobuf encoded binary messages, using
> Content-Type: application/octet-stream, and this has worked flawless uptil 
> now.
>
> Ok, we thought we just set the clients to use HTTP1.0, since 
> Content-Length header is mandatory in 1.0. But that didn't help we still 
> don't get any 
> Content-Length IMO this GAE behavior breaks GAE and HTTP1.0 compability.
>
> So, why is the Content-Length header missing? It was there before but has 
> been removed, why wasn't we informed?
>
>
>  
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d67ee316-3450-4b79-b321-21fe02049ec0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Modules with different languages - Is it Possible?

2016-03-23 Thread Alejandro Magnani
I've a couple of app engine applications that interact to each other - some 
of them developed in python and others in java. I was wondering if I can 
merge the solutions in just one app engine with different modules without 
changing the code base. 

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/6ecaedc4-9eef-42f2-b4f9-a5e21647516a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Modules with different languages - Is it Possible?

2016-03-23 Thread Nickolas Daskalou
Hi Alejandro,

Yes, this is definitely supported.

Keep in mind though that they will be sharing all the other goodies like
Datastore, Memcache etc., so each module will have the potential to clobber
the other's data.

Nick
On 24/03/2016 7:54 AM, "Alejandro Magnani" 
wrote:

> I've a couple of app engine applications that interact to each other -
> some of them developed in python and others in java. I was wondering if I
> can merge the solutions in just one app engine with different modules
> without changing the code base.
>
> --
> 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 this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/6ecaedc4-9eef-42f2-b4f9-a5e21647516a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAOj3zuAEq%2B909B_HHTNNf39y2E-XX8vGvvaUEDAupw99O1nE9w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Modules with different languages - Is it Possible?

2016-03-23 Thread 'Alex Martelli' via Google App Engine
Yes, an app's modules can be in different languages. You do need to pay
care to how they share entries in the datastore or memcache (if they do
such sharing) -- the byte-stream-level is typically not documented (if any
interoperability is in fact possible). For example, if a Python module uses
a field of type ndb.PickleProperty, there is, I believe, no way for a Java
module to recover the underlying Python object (it would require
"unpickling" and I don't think Java has a way to unpickle -- it's a
Python-only protocol).

In this respect, it's pretty much as if, in a non-GAE context, different
programs wrote and read data files from different programming languages;
interoperability can then be murky.

To recover an arbitrary bunch of bytes from Python w/o any interpretation,
declare those fields to be of type BlobProperty; from
Java, com.google.appengine.api.datastore.Blob (or ShortBlob if < 1500
bytes). However, it's then up to you to explore how best to achieve
whatever level of interoperation, if any, is needed.

Alex

On Wed, Mar 23, 2016 at 1:54 PM, Alejandro Magnani <
alejandro.magn...@gmail.com> wrote:

> I've a couple of app engine applications that interact to each other -
> some of them developed in python and others in java. I was wondering if I
> can merge the solutions in just one app engine with different modules
> without changing the code base.
>
> --
> 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 this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/6ecaedc4-9eef-42f2-b4f9-a5e21647516a%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAE46Be_DYTdSWR7fGcLRD8K9PDaRmYucO_dpPYLXoV2wke-BBw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine Security

2016-03-23 Thread Alejandro Magnani
Hi Fendy, 

Not an expert here, but I think they meant that security is handled because 
they have libraries such as the "user" library to login into you app using 
google's oauth. 

Here are some links that you may find useful (for python - pretty sure Java 
and other languages have them):
- https://cloud.google.com/appengine/docs/python/oauth/
- https://developers.google.com/identity/protocols/OpenIDConnect#server-flow
- https://cloud.google.com/appengine/docs/python/users/


On Wednesday, March 23, 2016 at 2:42:49 PM UTC-5, Fendy Jong wrote:
>
> Hi,
>
> I am new to App Engine and lacking a lot about security.
>
> I just watch GCP Live 2016. Google kept on mentioning that the security is 
> automatically handled. I am just wandering, does that means I don't have to 
> configure App Engine security anymore? If it requires configuration, what 
> kind of configuration that I need to do? Thank you
>
> Best regards,
> Tjin Fendy
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/84bfc8b4-8256-4388-8ff6-2a081b43eb08%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App Engine admin console redirects to Developers Console

2016-03-23 Thread Bridget Marshall

So that was back in October of 2015.  Is this still true now?  
On Wednesday, October 7, 2015 at 6:01:20 AM UTC-4, Stewart Fife wrote:
>
> Hello! 
>
> We are pleased to announce that we redirected the first set of App Engine 
> admin console menus to Developers Console today. This begins the final 
> stage of consolidating the management of Google Cloud Platform services 
> into one consistent experience for customers. 
>
> Thanks for all your feedback on this important change. 
>
> Stewart on behalf of the GAE team


On Wednesday, October 7, 2015 at 6:01:20 AM UTC-4, Stewart Fife wrote:
>
> Hello! 
>
> We are pleased to announce that we redirected the first set of App Engine 
> admin console menus to Developers Console today. This begins the final 
> stage of consolidating the management of Google Cloud Platform services 
> into one consistent experience for customers. 
>
> Thanks for all your feedback on this important change. 
>
> Stewart on behalf of the GAE team

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/df0355b6-cd22-4003-a5e1-732f01601259%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


My First Project-8b1aa4922e86.json
Description: application/json


[google-appengine] anyone went to google's gcpnext event?

2016-03-23 Thread Wilson MacGyver
Did anyone go to google's gcpnext event?

I'm curious what the message on GAE is. I saw this on twitter

https://twitter.com/PaulMiller/status/712680881329086464

to hear from Eric Schmidt saying "app engine didn't really work" makes me
worry about GAE's future.

-- 
Omnem crede diem tibi diluxisse supremum.

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAM0dQnnzJ8j7V-4rcPaVFb%2BOD-fLn-qZMejdOtb2x9wW5k47UQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] anyone went to google's gcpnext event?

2016-03-23 Thread 'Alex Martelli' via Google App Engine
I couldn't make it to SF, but it's all available online --
https://cloudplatformonline.com/NEXT2016-Live.html - and I was already able
to catch most of it, including Eric's own keynote.

I do recommend watching the livestream, but, TL;DR, WITH a bit of context
that obviously Twitter tends to be pretty poor at...: offering JUST what we
thought developers should ideally be using (App Engine, with just Python,
only Datastore / no SQL, etc) just didn't work in terms of getting us
market share -- by more or less sticking to just that one line for years,
we missed a much vaster slate of developers who just couldn't consider a
complete, from-scratch rearchitecting. So we kept expanding it, both within
App Engine (more languages, the flex environment nee MVM, easy SQL access
via Cloud SQL) and outside it (IAAS such as GCE, SAAS such as BigQuery).

Absolutely no reason to have this cause any anxiety about GAE's future. So
much new GAE stuff being announced at this Next conference should, on the
contrary, eliminate any anxiety one might previously have harbored.


Alex


On Wed, Mar 23, 2016 at 2:30 PM, Wilson MacGyver 
wrote:

> Did anyone go to google's gcpnext event?
>
> I'm curious what the message on GAE is. I saw this on twitter
>
> https://twitter.com/PaulMiller/status/712680881329086464
>
> to hear from Eric Schmidt saying "app engine didn't really work" makes me
> worry about GAE's future.
>
> --
> Omnem crede diem tibi diluxisse supremum.
>
> --
> 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 this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CAM0dQnnzJ8j7V-4rcPaVFb%2BOD-fLn-qZMejdOtb2x9wW5k47UQ%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAE46Be-vzp2zQ03Z8umEtq7btGcND7tDRLsbSjXon5tMrLWc1w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Cannot send mail

2016-03-23 Thread 'Nick (Cloud Platform Support)' via Google App Engine
This issue appears to have been resolved. If anybody is still experiencing 
the issue, feel free to post in the linked PIT thread and / or here and we 
can look into your specific case.

Cheers!

Nick
Cloud Platform Community Support

On Wednesday, March 16, 2016 at 12:42:24 PM UTC-4, Nick (Cloud Platform 
Support) wrote:
>
> Hey All,
>
> Thanks for your reports. We're noticing that there are more than a normal 
> number of reporters on this issue and we're looking into it with a high 
> priority. Feel free to post the specific details of your case in a 
> self-contained comment on the thread linked above (now public again) and 
> we'll take it into account. If, after the resolution of this issue, yours 
> turns out to be slightly different, or persists, feel free to post an 
> entirely separate thread. We'll be, as always, actively monitoring the new 
> threads and will respond quickly with questions or progress updates.
>
> On Tuesday, March 15, 2016 at 11:49:36 AM UTC-4, Rob Williams wrote:
>>
>> Sounds like it's happening to a big number of sites.
>>
>> I wonder how many people it's happening to that just haven't noticed it 
>> yet...
>>
>> On Tuesday, March 15, 2016 at 7:23:35 AM UTC-4, Gert wrote:
>>>
>>> https://code.google.com/p/googleappengine/issues/detail?id=12819
>>>
>>> Can this be a higher priority please then medium. Not be able to send 
>>> confirmation mails is critical to my app
>>>
>>> On Friday, March 11, 2016 at 1:59:56 AM UTC+1, Nick (Cloud Platform 
>>> Support) wrote:

 Hey Mark,

 We continue to look into this issue. The best thing to do would be to 
 create a Public Issue Tracker thread with your specific information so 
 that 
 we can have a focused and clear context in which to track your issue, 
 which 
 might be different or overlapping (we don't know from this point). We 
 monitor the Public Issue Tracker every day, so not to worry, we'll be in 
 contact quickly after your posting.

 On Thursday, March 10, 2016 at 8:15:46 AM UTC-5, Marek Dusek wrote:
>
> Hello,
>
> may I ask how you solved the issue (as the link is no longer valid and 
> the ticket ID disappeared from the public ticket listing)?
>
> We are facing similar issue on our GAE application - emails suddenly 
> (within last days) stopped being delivered, although no change was made 
> to 
> the settings or code (and the mail quota in dev console is being updated 
> properly).
>
> I believe there are similar posts on SO without any conclusion.
>
> Thank you,
> Marek Dusek
>
> On Friday, March 4, 2016 at 9:58:57 PM UTC+1, Nick (Cloud Platform 
> Support) wrote:
>>
>> Hey Rob,
>>
>> Thanks for the link, and for posting in the right place :) We'll be 
>> active on that thread shortly. 
>>
>> On Friday, March 4, 2016 at 10:56:02 AM UTC-5, Rob Williams wrote:
>>>
>>> Hi Nick,
>>>
>>> I've created 
>>> https://code.google.com/p/googleappengine/issues/detail?id=12786
>>>
>>> Thanks.
>>>
>>> On Thursday, March 3, 2016 at 6:38:11 PM UTC-5, Nick (Cloud Platform 
>>> Support) wrote:

 Hey Rob,

 The best way to get us to look at a potential issue is to make a 
 report in the Public Issue Tracker 
 . Feel free 
 to do so, with as much technical information as possible, and you'll 
 find 
 that the responses are quick and the issue will make progress. Posting 
 in a 
 forum meant for general discussion (such as this one) is far less 
 likely to 
 find its way to people who can help.

 Best wishes,

 Nick



 On Wednesday, March 2, 2016 at 12:49:42 PM UTC-5, Rob Williams 
 wrote:
>
> Hi,
>
> I've seen the same since yesterday, 1-March-2015. Existing code 
> queues mails to not send too fast. Test case has a small number of 
> receivers.
>
> Have found that:
>
>- Logs indicate mail was sent
>- Quota is updated to show mail being sent
>- Only a small random subset of the sent mails are received by 
>remote hosts
>   - Have tested with multiple receiving domains
>   - Emails are not in junk folders
>   - The few emails that are delivered arrive instantly
>- No bounce backs have been delivered
>
>
> Several people are seeing similar behaviour on stack overflow. 
> http://stackoverflow.com/questions/35727054/google-app-engine-python-mail-sent-but-not-received
>   
>
> http://stackoverflow.com/questions/35737937/sending-email-stopped-working-using-anythingtestapp-appspotmail-com
>
>

[google-appengine] Re: App Engine Security

2016-03-23 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Fendy,

I'm unsure what specific aspect of the talks you're referring to, but in 
addition to the question of authentication libraries and systems, the 
statements may have been referring to the fact that when dealing with a 
managed platform within secured infrastructure, you face less security 
issues as a system administrator or developer than you would by simply 
deploying your site on a traditional server box. However, I wouldn't want 
to speculate. You can read more about Cloud Platform security in our 
whitepaper and docs .

Cheers,

Nick
Cloud Platform Community Support 

On Wednesday, March 23, 2016 at 3:42:49 PM UTC-4, Fendy Jong wrote:
>
> Hi,
>
> I am new to App Engine and lacking a lot about security.
>
> I just watch GCP Live 2016. Google kept on mentioning that the security is 
> automatically handled. I am just wandering, does that means I don't have to 
> configure App Engine security anymore? If it requires configuration, what 
> kind of configuration that I need to do? Thank you
>
> Best regards,
> Tjin Fendy
>

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/264734fa-c20a-47e1-bff4-cd3a2f02e764%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Cannot send mail

2016-03-23 Thread Gert
For me it's working thanks, can we have a explanation please what went 
wrong?

On Thursday, March 24, 2016 at 12:25:37 AM UTC+1, Nick (Cloud Platform 
Support) wrote:
>
> This issue appears to have been resolved. If anybody is still experiencing 
> the issue, feel free to post in the linked PIT thread and / or here and we 
> can look into your specific case.
>
> Cheers!
>
> Nick
> Cloud Platform Community Support
>
> On Wednesday, March 16, 2016 at 12:42:24 PM UTC-4, Nick (Cloud Platform 
> Support) wrote:
>>
>> Hey All,
>>
>> Thanks for your reports. We're noticing that there are more than a normal 
>> number of reporters on this issue and we're looking into it with a high 
>> priority. Feel free to post the specific details of your case in a 
>> self-contained comment on the thread linked above (now public again) and 
>> we'll take it into account. If, after the resolution of this issue, yours 
>> turns out to be slightly different, or persists, feel free to post an 
>> entirely separate thread. We'll be, as always, actively monitoring the new 
>> threads and will respond quickly with questions or progress updates.
>>
>> On Tuesday, March 15, 2016 at 11:49:36 AM UTC-4, Rob Williams wrote:
>>>
>>> Sounds like it's happening to a big number of sites.
>>>
>>> I wonder how many people it's happening to that just haven't noticed it 
>>> yet...
>>>
>>> On Tuesday, March 15, 2016 at 7:23:35 AM UTC-4, Gert wrote:

 https://code.google.com/p/googleappengine/issues/detail?id=12819

 Can this be a higher priority please then medium. Not be able to send 
 confirmation mails is critical to my app

 On Friday, March 11, 2016 at 1:59:56 AM UTC+1, Nick (Cloud Platform 
 Support) wrote:
>
> Hey Mark,
>
> We continue to look into this issue. The best thing to do would be to 
> create a Public Issue Tracker thread with your specific information so 
> that 
> we can have a focused and clear context in which to track your issue, 
> which 
> might be different or overlapping (we don't know from this point). We 
> monitor the Public Issue Tracker every day, so not to worry, we'll be in 
> contact quickly after your posting.
>
> On Thursday, March 10, 2016 at 8:15:46 AM UTC-5, Marek Dusek wrote:
>>
>> Hello,
>>
>> may I ask how you solved the issue (as the link is no longer valid 
>> and the ticket ID disappeared from the public ticket listing)?
>>
>> We are facing similar issue on our GAE application - emails suddenly 
>> (within last days) stopped being delivered, although no change was made 
>> to 
>> the settings or code (and the mail quota in dev console is being updated 
>> properly).
>>
>> I believe there are similar posts on SO without any conclusion.
>>
>> Thank you,
>> Marek Dusek
>>
>> On Friday, March 4, 2016 at 9:58:57 PM UTC+1, Nick (Cloud Platform 
>> Support) wrote:
>>>
>>> Hey Rob,
>>>
>>> Thanks for the link, and for posting in the right place :) We'll be 
>>> active on that thread shortly. 
>>>
>>> On Friday, March 4, 2016 at 10:56:02 AM UTC-5, Rob Williams wrote:

 Hi Nick,

 I've created 
 https://code.google.com/p/googleappengine/issues/detail?id=12786

 Thanks.

 On Thursday, March 3, 2016 at 6:38:11 PM UTC-5, Nick (Cloud 
 Platform Support) wrote:
>
> Hey Rob,
>
> The best way to get us to look at a potential issue is to make a 
> report in the Public Issue Tracker 
> . Feel 
> free to do so, with as much technical information as possible, and 
> you'll 
> find that the responses are quick and the issue will make progress. 
> Posting 
> in a forum meant for general discussion (such as this one) is far 
> less 
> likely to find its way to people who can help.
>
> Best wishes,
>
> Nick
>
>
>
> On Wednesday, March 2, 2016 at 12:49:42 PM UTC-5, Rob Williams 
> wrote:
>>
>> Hi,
>>
>> I've seen the same since yesterday, 1-March-2015. Existing code 
>> queues mails to not send too fast. Test case has a small number of 
>> receivers.
>>
>> Have found that:
>>
>>- Logs indicate mail was sent
>>- Quota is updated to show mail being sent
>>- Only a small random subset of the sent mails are received 
>>by remote hosts
>>   - Have tested with multiple receiving domains
>>   - Emails are not in junk folders
>>   - The few emails that are delivered arrive instantly
>>- No bounce backs have been delivered
>>
>>
>> Several people are seeing s

Re: [google-appengine] anyone went to google's gcpnext event?

2016-03-23 Thread Wilson MacGyver
thanks for the link. Will check it out. that made me feel better :)

On Wed, Mar 23, 2016 at 5:47 PM, 'Alex Martelli' via Google App Engine <
google-appengine@googlegroups.com> wrote:

> I couldn't make it to SF, but it's all available online --
> https://cloudplatformonline.com/NEXT2016-Live.html - and I was already
> able to catch most of it, including Eric's own keynote.
>
> I do recommend watching the livestream, but, TL;DR, WITH a bit of context
> that obviously Twitter tends to be pretty poor at...: offering JUST what we
> thought developers should ideally be using (App Engine, with just Python,
> only Datastore / no SQL, etc) just didn't work in terms of getting us
> market share -- by more or less sticking to just that one line for years,
> we missed a much vaster slate of developers who just couldn't consider a
> complete, from-scratch rearchitecting. So we kept expanding it, both within
> App Engine (more languages, the flex environment nee MVM, easy SQL access
> via Cloud SQL) and outside it (IAAS such as GCE, SAAS such as BigQuery).
>
> Absolutely no reason to have this cause any anxiety about GAE's future. So
> much new GAE stuff being announced at this Next conference should, on the
> contrary, eliminate any anxiety one might previously have harbored.
>
>
> Alex
>
>
> On Wed, Mar 23, 2016 at 2:30 PM, Wilson MacGyver 
> wrote:
>
>> Did anyone go to google's gcpnext event?
>>
>> I'm curious what the message on GAE is. I saw this on twitter
>>
>> https://twitter.com/PaulMiller/status/712680881329086464
>>
>> to hear from Eric Schmidt saying "app engine didn't really work" makes me
>> worry about GAE's future.
>>
>> --
>> Omnem crede diem tibi diluxisse supremum.
>>
>> --
>> 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 this group, send email to google-appengine@googlegroups.com.
>> Visit this group at https://groups.google.com/group/google-appengine.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/google-appengine/CAM0dQnnzJ8j7V-4rcPaVFb%2BOD-fLn-qZMejdOtb2x9wW5k47UQ%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> 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 this group, send email to google-appengine@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-appengine.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/CAE46Be-vzp2zQ03Z8umEtq7btGcND7tDRLsbSjXon5tMrLWc1w%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Omnem crede diem tibi diluxisse supremum.

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAM0dQnmMmYwgbzKTOc3kCGYJZnNG6YS7dTX1ongb4_yzcXAsag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.