[google-appengine] Re: 403 error when trying to list metrics in different project through monitoring api from app engine

2020-07-07 Thread 'Olu' via Google App Engine
As you may already know, GCP Projects represent a trust boundary within an 
organization. Hence, inter-project communication between App Engine 
services would require Public IP communication or using Shared VPC[1]. So, 
depending on your setup, there really should be no internal communication 
between App Engine Services or Other GCP services over different projects. 

Additionally, about using Public App Engine IP addresses, as illustrated in 
this document [2] App Engine hosts services on a dynamic public IP address 
of a Google load balancer. Due to that, the IP address can be changed any 
time and any Static IP can not be provided.  For outbound services, a large 
pool of IP addresses are used which you can obtain as outlined in this 
document[3].

With all that being said, can you shed more light about the metrics being 
collected? The metrics are for an App Engine application in Project B or 
where? What product's metrics exactly are you looking to pull? 

[1]https://cloud.google.com/vpc/docs/shared-vpc
[2]https://cloud.google.com/appengine/kb/#private-ip
[3]https://cloud.google.com/appengine/kb/#static-ip
[4]https://cloud.google.com/logging
[5]https://cloud.google.com/monitoring

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b89d98b3-f8cb-4b7f-af7a-7e6262fd26bfo%40googlegroups.com.


[google-appengine] Re: 403 error when trying to use download_app

2010-12-06 Thread ustunozgur

  I'm trying to use the download_app command to download an app (word-
  finder) and am getting the following 403 error:

  l...@d:~/projects/wordfinder$ python2.5 ../../google_appengine/appcfg.py
  download_app -A word-finder .
  Server: appengine.google.com.
  Fetching file list...
  Error 403: --- begin server output ---
  You do not have permission to download this app version.
  --- end server output ---

  I am using the same account that I uploaded the app from.
  Interestingly, when I look in the Versions section of the dashboard,
  it shows the Deployed By field as empty. This app was deployed 637
  days ago -- is it possible that the Deployed By information wasn't
  kept that far back?


I have filed a bug on this issue: 
http://code.google.com/p/googleappengine/issues/detail?id=4217

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 403 error when trying to use download_app

2010-12-06 Thread lukem
I also filed a bug on this a couple days ago (http://code.google.com/p/
googleappengine/issues/detail?id=4201) which was recently marked
WONTFIX.

On Dec 6, 1:51 pm, ustunozgur ustunoz...@gmail.com wrote:
   I'm trying to use the download_app command to download an app (word-
   finder) and am getting the following 403 error:

   l...@d:~/projects/wordfinder$ python2.5 ../../google_appengine/appcfg.py
   download_app -A word-finder .
   Server: appengine.google.com.
   Fetching file list...
   Error 403: --- begin server output ---
   You do not have permission to download this app version.
   --- end server output ---

   I am using the same account that I uploaded the app from.
   Interestingly, when I look in the Versions section of the dashboard,
   it shows the Deployed By field as empty. This app was deployed 637
   days ago -- is it possible that the Deployed By information wasn't
   kept that far back?

 I have filed a bug on this 
 issue:http://code.google.com/p/googleappengine/issues/detail?id=4217

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 403 error when trying to use download_app

2010-12-03 Thread ustunozgur


On 3 Aralık, 10:36, lukem ljmatk...@gmail.com wrote:
 I'm trying to use the download_app command to download an app (word-
 finder) and am getting the following 403 error:

 l...@d:~/projects/wordfinder$ python2.5 ../../google_appengine/appcfg.py
 download_app -A word-finder .
 Server: appengine.google.com.
 Fetching file list...
 Error 403: --- begin server output ---
 You do not have permission to download this app version.
 --- end server output ---

 I am using the same account that I uploaded the app from.
 Interestingly, when I look in the Versions section of the dashboard,
 it shows the Deployed By field as empty. This app was deployed 637
 days ago -- is it possible that the Deployed By information wasn't
 kept that far back?

Same here. I have an app dating back ~250 days where the deployed by
field is nonempty, and I can download the code just fine.

I have another app which is ~300 days old, which has an empty deployed
by
field, and I can't download the code.

Ustun

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 403 error - automated queries

2010-06-17 Thread mike
Hi, the requests are being made directly in App Engine. I am not using
makeRequest. I am using the Python gdata API with the run_on_appengine
wrapper so it utilizes the urlfetch function, directly in appspot or
in the development environment. For some reason the development
environment can post but I get the 403 error when using the production
appspot site. I include an api key and the data is authenticated.
Since my site is in development, I am just authenticating my own
account data at this time.


The site also provides other base information to a gadget. This
functionality does not use the gbase api but uses REST. That gadget
has worked fine for over a year until I started to use the gdata api
to post data. The gadget does not use makeReqeust. The gadget and new
functionality (which uses the gdata api) get 403 errors for about 4
days  after I post and thing or two. I am stumped.

Mike J.




On Jun 1, 6:52 pm, Ikai L (Google) ika...@google.com wrote:
 Are the gadgets making requests from App Engine? Or are they calling
 makeRequest to App Engine which is in turn using the GData API?



 On Sun, May 23, 2010 at 5:56 PM, mike hywaym...@gmail.com wrote:
  Hi, I have 3 gadgets that retrieve data from Google base. the gadgets
  are hosted on App Enginer. About a week ago, the gadgets started
  getting 403 errors and the gadgets are
  basically broken. I have not had a problem over the last year and
  longer. The error reads:

  We're sorry..but your computer or network may be sending automated
  queries. To protect our users, we can't process your request right
  now.
 http://www.google.com/support/bin/answer.py?answer=86640;

   I evaluated the traffic and can not identify a source of automated
  requests. There is also no evidence
  of a virus.

  How can I get the account reset? At this point I have lost a lot of
  users. Here is a link to the sites having the problem (which feed
  gadgets). For some reason, sometimes the first query shows results but
  after that the 403 error shows up.

 http://appdiner.appspot.com
 http://basestuff.appspot.com
 http://searchhomesales.appspot.com/

  Thanks,
  Mike J.

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

 --
 Ikai Lan
 Developer Programs Engineer, Google App Engine
 Blog:http://googleappengine.blogspot.com
 Twitter:http://twitter.com/app_engine
 Reddit:http://www.reddit.com/r/appengine

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 403 error - automated queries

2010-06-17 Thread mike
Hi, the requests are being made directly in App Engine. I am not using
makeRequest. I am using the Python gdata API with the run_on_appengine
wrapper so it utilizes the urlfetch function, directly in appspot or
in the development environment. For some reason the development
environment can post but I get the 403 error when using the production
appspot site. I include an api key and the data is authenticated.
Since my site is in development, I am just authenticating my own
account data at this time.


The site also provides other base information to a gadget. This
functionality does not use the gbase api but uses REST. That gadget
has worked fine for over a year until I started to use the gdata api
to post data. The gadget does not use makeReqeust. The gadget and new
functionality (which uses the gdata api) get 403 errors for about 4
days  after I post and thing or two. I am stumped.

Mike J.




On Jun 1, 6:52 pm, Ikai L (Google) ika...@google.com wrote:
 Are the gadgets making requests from App Engine? Or are they calling
 makeRequest to App Engine which is in turn using the GData API?



 On Sun, May 23, 2010 at 5:56 PM, mike hywaym...@gmail.com wrote:
  Hi, I have 3 gadgets that retrieve data from Google base. the gadgets
  are hosted on App Enginer. About a week ago, the gadgets started
  getting 403 errors and the gadgets are
  basically broken. I have not had a problem over the last year and
  longer. The error reads:

  We're sorry..but your computer or network may be sending automated
  queries. To protect our users, we can't process your request right
  now.
 http://www.google.com/support/bin/answer.py?answer=86640;

   I evaluated the traffic and can not identify a source of automated
  requests. There is also no evidence
  of a virus.

  How can I get the account reset? At this point I have lost a lot of
  users. Here is a link to the sites having the problem (which feed
  gadgets). For some reason, sometimes the first query shows results but
  after that the 403 error shows up.

 http://appdiner.appspot.com
 http://basestuff.appspot.com
 http://searchhomesales.appspot.com/

  Thanks,
  Mike J.

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

 --
 Ikai Lan
 Developer Programs Engineer, Google App Engine
 Blog:http://googleappengine.blogspot.com
 Twitter:http://twitter.com/app_engine
 Reddit:http://www.reddit.com/r/appengine

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 403 error - automated queries

2010-06-14 Thread Braingain
The we are sorry dialog is happening all the time with purely human
interaction now, unfortunately. Please read the post
http://technorati.com/blogging/article/dear-google-i-am-human; it
includes a bizarre explanation from a Google developer.

On Jun 1, 3:52 pm, Ikai L (Google) ika...@google.com wrote:
 Are the gadgets making requests from App Engine? Or are they calling
 makeRequest to App Engine which is in turn using the GData API?





 On Sun, May 23, 2010 at 5:56 PM, mike hywaym...@gmail.com wrote:
  Hi, I have 3 gadgets that retrieve data from Google base. the gadgets
  are hosted on App Enginer. About a week ago, the gadgets started
  getting 403 errors and the gadgets are
  basically broken. I have not had a problem over the last year and
  longer. The error reads:

  We're sorry..but your computer or network may be sending automated
  queries. To protect our users, we can't process your request right
  now.
 http://www.google.com/support/bin/answer.py?answer=86640;

   I evaluated the traffic and can not identify a source of automated
  requests. There is also no evidence
  of a virus.

  How can I get the account reset? At this point I have lost a lot of
  users. Here is a link to the sites having the problem (which feed
  gadgets). For some reason, sometimes the first query shows results but
  after that the 403 error shows up.

 http://appdiner.appspot.com
 http://basestuff.appspot.com
 http://searchhomesales.appspot.com/

  Thanks,
  Mike J.

  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2Bunsubscrib 
  e...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

 --
 Ikai Lan
 Developer Programs Engineer, Google App Engine
 Blog:http://googleappengine.blogspot.com
 Twitter:http://twitter.com/app_engine
 Reddit:http://www.reddit.com/r/appengine

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: 403 error - automated queries

2010-06-14 Thread Ikai L (Google)
I think that post is related to search, not GData.

On Sun, Jun 13, 2010 at 10:08 PM, Braingain irinashama...@gmail.com wrote:

 The we are sorry dialog is happening all the time with purely human
 interaction now, unfortunately. Please read the post
 http://technorati.com/blogging/article/dear-google-i-am-human; it
 includes a bizarre explanation from a Google developer.

 On Jun 1, 3:52 pm, Ikai L (Google) ika...@google.com wrote:
  Are the gadgets making requests from App Engine? Or are they calling
  makeRequest to App Engine which is in turn using the GData API?
 
 
 
 
 
  On Sun, May 23, 2010 at 5:56 PM, mike hywaym...@gmail.com wrote:
   Hi, I have 3 gadgets that retrieve data from Google base. the gadgets
   are hosted on App Enginer. About a week ago, the gadgets started
   getting 403 errors and the gadgets are
   basically broken. I have not had a problem over the last year and
   longer. The error reads:
 
   We're sorry..but your computer or network may be sending automated
   queries. To protect our users, we can't process your request right
   now.
  http://www.google.com/support/bin/answer.py?answer=86640;
 
I evaluated the traffic and can not identify a source of automated
   requests. There is also no evidence
   of a virus.
 
   How can I get the account reset? At this point I have lost a lot of
   users. Here is a link to the sites having the problem (which feed
   gadgets). For some reason, sometimes the first query shows results but
   after that the 403 error shows up.
 
  http://appdiner.appspot.com
  http://basestuff.appspot.com
  http://searchhomesales.appspot.com/
 
   Thanks,
   Mike J.
 
   --
   You received this message because you are subscribed to the Google
 Groups
   Google App Engine group.
   To post to this group, send email to google-appengine@googlegroups.com
 .
   To unsubscribe from this group, send email to
   google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.comgoogle-appengine%2Bunsubscrib
 e...@googlegroups.com
   .
   For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 
  --
  Ikai Lan
  Developer Programs Engineer, Google App Engine
  Blog:http://googleappengine.blogspot.com
  Twitter:http://twitter.com/app_engine
  Reddit:http://www.reddit.com/r/appengine

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appeng...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 
Ikai Lan
Developer Programs Engineer, Google App Engine
Blog: http://googleappengine.blogspot.com
Twitter: http://twitter.com/app_engine
Reddit: http://www.reddit.com/r/appengine

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 403 Error

2009-07-24 Thread Jeremy Truax

Yah I had tried incrementing to version 2 and then 3 with no success.

I then let it sit and did something else for about 30 min.

Came back and version 3 worked.

I hate when something just works and there was no resolution as to
what was the problem.=/

On Jul 21, 5:58 pm, Rodrigo Moraes rodrigo.mor...@gmail.com wrote:
 On Tue, Jul 21, 2009 at 7:10 PM, Rodrigo Moraeswrote:

  On Tue, Jul 21, 2009 at 7:03 PM, Jeremy Truax wrote:

  I'm having it too, seems to be an old issue but unresolved:

 http://code.google.com/p/googleappengine/issues/detail?id=690

  I just had this problem too some minutes ago, for the first time. I
  have only 2 versions, and in quota details it shows 24 of 250
  deployments today - it's far under the allowed quota.

  I tried deleting version 2, and upload a new version 2 - got a 403.
  I tried creating a version 3 - got a 403.

 just an update. it fixed by itself after some time. or it was because
 of what I did: i deleted the version 2 in the admin panel, ran
 appcfg.py rollback and then deployed a new version number 3.

 not sure what is happening here or why i got the 403 previously, but well.

 -- rodrigo
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 403 Error

2009-07-21 Thread Jeremy Truax

I'm having it too, seems to be an old issue but unresolved:

http://code.google.com/p/googleappengine/issues/detail?id=690

On Jul 12, 1:44 am, Atrus atr...@gmail.com wrote:
 I keep getting a 403 Error stating that there aretoomanyversions.
 I only have one version (and therefore unable to delete that, and
 using the rollback command does nothing.

 How can i fix this?
 Thanks in advance,
 Tim
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 403 Error

2009-07-21 Thread Rodrigo Moraes

On Tue, Jul 21, 2009 at 7:03 PM, Jeremy Truax wrote:

 I'm having it too, seems to be an old issue but unresolved:

 http://code.google.com/p/googleappengine/issues/detail?id=690

I just had this problem too some minutes ago, for the first time. I
have only 2 versions, and in quota details it shows 24 of 250
deployments today - it's far under the allowed quota.

I tried deleting version 2, and upload a new version 2 - got a 403.
I tried creating a version 3 - got a 403.

I'm blocked now by this.

Can anybody help, please?

-- rodrigo

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: 403 Error

2009-07-21 Thread Rodrigo Moraes

On Tue, Jul 21, 2009 at 7:10 PM, Rodrigo Moraeswrote:
 On Tue, Jul 21, 2009 at 7:03 PM, Jeremy Truax wrote:

 I'm having it too, seems to be an old issue but unresolved:

 http://code.google.com/p/googleappengine/issues/detail?id=690

 I just had this problem too some minutes ago, for the first time. I
 have only 2 versions, and in quota details it shows 24 of 250
 deployments today - it's far under the allowed quota.

 I tried deleting version 2, and upload a new version 2 - got a 403.
 I tried creating a version 3 - got a 403.

just an update. it fixed by itself after some time. or it was because
of what I did: i deleted the version 2 in the admin panel, ran
appcfg.py rollback and then deployed a new version number 3.

not sure what is happening here or why i got the 403 previously, but well.

-- rodrigo

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---