[google-appengine] About design of the application which supports mobile and web browser

2015-09-29 Thread vijay kumar


We are developing the application which supports both mobile and web 
application in google app engine. Most of the things are developed using 
google cloud endpoints, is there any performance effect using the endpoints 
in web applications. As an average we are using 10-15 endpoints in browser 
web page using google javascript endpoint library. these endpoints need to 
refresh data from server for certain interval of time. Is it causes 
performance effect.


Could you please suggest us, is there any better and securely implement 
applications which support both mobile and web application.

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/fe0ff21a-1401-4391-b62e-ba4d601b9049%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] 301 redirects - no compelling solution?

2015-09-29 Thread Luna Duclos
In your app.yaml, you can use  "secure: always" to force the app to use
https, this will redirect any and all requests to https without them
hitting your app's code at all, does this seem what you're looking for ?

On Tue, Sep 29, 2015 at 3:58 AM, Alistair Burrowes <
alistair.burro...@gmail.com> wrote:

> Hi,
>
> It seems like there is no good solution for setting up 301 redirects at a
> domain level which is a common requirement of websites and should not need
> to be handled by an instance. Existing options seem to be:
>
>- Use modules and route via dispatch non-canonical domains. This
>doesn't appear to handle the case where you want to redirect http to https
>for the canonical domain as I don't think you can use http vs https for
>module routing. The solution in general also kind of sucks because you rack
>up instance hours for a pretty trivial requirement.
>- Pass all requests through some handler and check the domain etc. Not
>bad for dynamic content, but static requests don't hit your app engine
>instance and you would need to force them to do so (avoiding the static
>content cdn) and have some ugly code that manually returns the static
>resource if the domain/scheme is all good.
>- Have a separate cloud project that non-canonical domains are pointed
>to that just redirects requests. This is fine, however doesn't work in the
>case that you want to redirect http to https since both must point to the
>same cloud project.
>
> I would like a more PaaS option such as:
>
>- Simple 301 redirects possible via a configuration file
>- Simple 301 redirects possible via the cloud console
>
> Am I missing something? If not can a more PaaS option be provided?
>
> --
> 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 http://groups.google.com/group/google-appengine.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/google-appengine/833c4de0-9406-432d-8e67-d2e7a4b0715c%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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CAEJU2Pc6W0nYFTwRYOmaJZRk%3DcvctZ4WsY%3DXX42uSXiZtyLdGg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] 301 redirects - no compelling solution?

2015-09-29 Thread Alistair Burrowes
Thanks I wasn't aware of that and that is really good to know. I will use 
that when my site moves to https.

However, I still think a PaaS style option should be available for domain 
redirects. Perhaps in app.yaml as well. I think i'll create an issue in the 
app engine issues tracker.

On Tuesday, September 29, 2015 at 5:58:43 PM UTC+10, Luna Duclos wrote:
>
> In your app.yaml, you can use  "secure: always" to force the app to use 
> https, this will redirect any and all requests to https without them 
> hitting your app's code at all, does this seem what you're looking for ?
>
> On Tue, Sep 29, 2015 at 3:58 AM, Alistair Burrowes  > wrote:
>
>> Hi,
>>
>> It seems like there is no good solution for setting up 301 redirects at a 
>> domain level which is a common requirement of websites and should not need 
>> to be handled by an instance. Existing options seem to be:
>>
>>- Use modules and route via dispatch non-canonical domains. This 
>>doesn't appear to handle the case where you want to redirect http to 
>> https 
>>for the canonical domain as I don't think you can use http vs https for 
>>module routing. The solution in general also kind of sucks because you 
>> rack 
>>up instance hours for a pretty trivial requirement.
>>- Pass all requests through some handler and check the domain etc. 
>>Not bad for dynamic content, but static requests don't hit your app 
>> engine 
>>instance and you would need to force them to do so (avoiding the static 
>>content cdn) and have some ugly code that manually returns the static 
>>resource if the domain/scheme is all good.
>>- Have a separate cloud project that non-canonical domains are 
>>pointed to that just redirects requests. This is fine, however doesn't 
>> work 
>>in the case that you want to redirect http to https since both must point 
>>to the same cloud project.
>>
>> I would like a more PaaS option such as:
>>
>>- Simple 301 redirects possible via a configuration file
>>- Simple 301 redirects possible via the cloud console
>>
>> Am I missing something? If not can a more PaaS option be provided?
>>
>> -- 
>> 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-appengi...@googlegroups.com .
>> To post to this group, send email to google-a...@googlegroups.com 
>> .
>> Visit this group at http://groups.google.com/group/google-appengine.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/833c4de0-9406-432d-8e67-d2e7a4b0715c%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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/aa31bb12-6ce7-4407-8b5b-6ee00de49cd9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How to best handle data stored in different locations in Google BigQuery?

2015-09-29 Thread Patrice (Cloud Platform Support)
Hi Phillip,

I've been waiting to see if someone from the community here has a brillant 
idea for your conundrum. Seems like not.

Honestly, with the use case you have, I don't see a good way to cut on 
costs. The best I could think of would be that you can always zip or encode 
the data in your bucket before sending it to EU. It's not much, but it'll 
minimize the size of the data you have to send over to the EU. I don't see 
much else that can help you unfortunately.

Cheers!

On Friday, September 25, 2015 at 12:51:39 PM UTC-4, Philipp Singer wrote:
>
>
> My current workflow in BigQuery is as follows:
>
>
> (1) query data in a public repository (stored in the US), (2) write it to 
> a table in my repository, (3) export a csv to a cloud bucket and (4) 
> download the csv on the ubuntu server I work on and (5) work with that on 
> the server.
>
>
> The problem I have now, is that the server I work on is located in EU. 
> Thus, I have to pay quite some fees for transfering data between my US 
> bucket and my EU server. I could now go ahead and locate my bucket in EU, 
> but then I still have the problem that I would transfer data from the US 
> (BigQuery) to EU (bucket). So I could also set my dataset in bq to be 
> located in the EU, but then I cant do any queries anylonger, because the 
> data in the public repository is located in the US, and queries between 
> different locations are not allowed.
>
>
> I am querying the public reddit comment data. My final ubuntu server that 
> I work on is a machine that is located in the EU, so I can't change that.
>
>
> Does anyone have an idea of how to approach this?
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8808dd4d-98fe-47bb-8e9c-b82e0c2c7863%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Problem : unable to find valid certification path to requested target

2015-09-29 Thread Sandeep N
Hi I followed the below steps which I got from a different site and I could 
not yet resolve the same issue.
Would you plz share me the steps you followed to resolve the issue.

Steps to import Google' SSL certifcate 
= 

(1) Visit https://appengine.google.com/ using your browser (I tried 
this using IE6 but I am sure other browsers will have a similar 
functionality). 

(2) Click the "Lock" icon at the status bar. You will see Certificate 
dialog. Click "Details" tab. 

(3) Click "Copy to" button and follow the wizard. Select "DER 
encoded.." on the Export File Format page. Click "Next" 

(4) Browse to some folder, give it a name and click "Save". Example: c: 
\dev\keystore\google.cer 

(5) Run the below command from your JRE/BIN folder. Make sure you 
adjust the locations of -keystore and -file in the below command. 

keytool -import -keystore C:\programs\Java\jre6\lib\security\cacerts - 
file c:\dev\keystore\google.cer 

(7) Try Deploy again. If your Deploy tool is using the same JRE where 
you imported the google SSL certificate in above steps, you should be 
fine now. 
--



On Tuesday, July 27, 2010 at 1:00:41 PM UTC+5:30, Phil wrote:
>
> I've found my problem. I needed to add the certificate of Google into 
> my cacerts of java. 
>
> Thanks 
>
> On 26 juil, 12:02, Phil  wrote: 
> > Hello, 
> > 
> > I've created the example code 'guestbook'. However, when I upload the 
> > program, I receive this error : 
> > 
> > com.google.appengine.tools.admin.AdminException: Unable to update app: 
> > sun.security.validator.ValidatorException: PKIX path building failed: 
> > sun.security.provider.certpath.SunCertPathBuilderException: unable to 
> > find valid certification path to requested target 
> > at 
> > com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java: 
> > 62) 
> > 
> > I use the OS linux (Ubuntu). 
> > 
> > What could be the problem? 
> > 
> > Many 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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3441999b-6713-41b8-a5bb-9f08ac03f173%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Console Log UI -- One Request Broken Up Into Several Expandable Rows

2015-09-29 Thread Patrice (Cloud Platform Support)
Hey Andrei,

Thank you very much for all this. I've made some more research, and we've 
seen it happen, but for extremely numerous logs (>100K). It is the first 
time I hear of this happening with a request that only contains 10 entries.

And no worry for the blurr, I just wanted to see the look of your request. 
If we need an un-blurred print screen, I'll let you know, and you can 
always just reply to me privately with it to keep it off-thread. For now it 
won't be needed.

I'll keep on checking on my end and come back with what I find.

Cheers!

On Saturday, September 26, 2015 at 8:10:02 PM UTC-4, Andrei Matveev wrote:
>
> Apologies for the reply delay...
>
> Below are screenshots that should help paint a better picture of what I'm 
> talking about. Please excuse all the blurring... still operating in stealth 
> mode.
>
> *Fragmented request in the console log UI*
>
> Beginning of request:
>
>
> 
>
>
> Continuation of request:
>
>
> 
>
>
>
>
>
>
>
>
>
>
>
>
>
> *Same Log Fragment in the Old App Engine Log UI:*
>
>
> 
>
>
>
>
>
>
>
>
> On Friday, September 25, 2015 at 4:43:43 PM UTC-4, pdknsk wrote:
>>
>> I noticed this too. 
>>
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3532021b-2613-498b-b236-32ae96789589%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Are blob keys guessable?

2015-09-29 Thread Rob Curtis
Hi Karl,

Thanks for your response. I think it's worth finding out how random the key 
is and how large the key space is.

@Ryan, could you elaborate on the randomness of the blobkey? Is it 
guessable given another blobkey?

Thanks
Rob

On Monday, September 28, 2015 at 7:51:18 PM UTC+2, Karl MacMillan wrote:
>
> Your question made me think that you were worried about security. I would 
> suggest that the randomness provided by the ID assignment is not helpful if 
> you are thinking of using these like people often use authentication tokens 
> or things like shareable urls for Dropbox or Google docs. The most basic 
> question in those scenarios is - if a user has one key what is the 
> likelihood that they could guess another valid key, potentially for another 
> users data? Depending on how you are enforcing user separation, with 
> datastore keys the answer is actually it is quite likely that they could 
> guess another valid key.
>
> In general, you probably want to be handing out security tokens created by 
> a standard process combined with HTTPS with the key. But unfortunately 
> getting this kind of security right means that you have to thoroughly 
> understand what security you are trying to enforce (i.e., threat modeling).
>
> Karl
>
>
>
> On Sep 28, 2015, at 10:33 AM, Rob Curtis  > wrote:
>
> Excellent, thanks very much.
>
> On Mon, Sep 28, 2015 at 4:22 PM Ryan (Cloud Platform Support) <
> rbru...@google.com > wrote:
>
>> Salutations Rob
>>
>> "The Blobstore value is assigned a unique, randomly generated key." [1] 
>>
>> The book was written by a Googler and is a good read.
>>
>> [1] http://ae-book.appspot.com/chapters/blobstore 
>>
>> On Sunday, September 27, 2015 at 3:23:50 PM UTC-4, Rob Curtis wrote:
>>>
>>> Hi, 
>>>
>>> I can't find any information on this in the documentation;
>>> Are blob keys guessable? 
>>> Is it safe to expose stringified blob key to a user?
>>>
>>> Thanks
>>> Rob
>>>
>>> -- 
>>
>>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/8c87bd70-01dd-4cbb-82f9-f29db484f99d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] App engine deployment error - SSLHandshakeException: unable to find valid certification path to requested target

2015-09-29 Thread Sandeep N
Hi Team,

I get the below exception when I tried to deploy my first 'Guestbook' 
application. I had completed all local machine testing successfully before 
the deployment.

Exception message:

javax.net.ssl.SSLHandshakeException: 
sun.security.validator.ValidatorException:
PKIX path building failed: 
sun.security.provider.certpath.SunCertPathBuilderExce
ption: unable to find valid certification path to requested target


I exported SSL certificate of https://appengine.google.com/ and then 
imported into my Keystore using the below commend.

keytool -import -keystore "C:\Program 
Files\Java\jdk1.7.0\jre\lib\security\cacerts" -file 
"D:\GAE\google.cer" -alias google-app-engine


But the issues still comes. I went through many discussion on the same 
topic and I could not yet resolve the issue. I tried all possibilities and 
nothing worked.
Plz help me with some solutions.

Thanks,
Sandeep

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/76e79251-6d9f-4178-880e-f043af15f45b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Custom Domains (and SSL)

2015-09-29 Thread Jesse Scherer (Google Cloud Support)
Hi Jay,

Since your question is about system administration and not programming, you 
might try ServerFault as opposed to StackOverflow.

In any case, can you share a bit more information? What does "Permissions" 
in the Developer console look like, for instance? Any other background you 
can share will help us (and folks on ServerFault) come up with better ideas.

Regards,

On Tuesday, September 29, 2015 at 7:24:49 AM UTC-7, Jay wrote:
>
> I'm not sure if this question is best here or Stackoverflow. 
> I am looking to use the feature recently moved to the google cloud console 
> to add an SSL certificate. We are already using a custom domain.
> Here is the new thing I ran into. When I log in and look at a particular 
> project, on which we already have a custom domain setup, I see nothing. It 
> looks like we have not set anything up. A colleague of mine logs in and 
> does the same thing, on the same project, and he sees a custom domain 
> already configured. This is before we get to the stage of setting up the 
> SSL.
>
> So we are seeing two different things. This makes me nervous. It also 
> means that I can't, apparently, setup the SSL, he would have to do that. 
> Surely, the configuration here is not tied to the user in some way. I must 
> be missing something.
>
> Thanks for any insight or suggestions.
>
> -- Jay
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/26748163-3ea4-4752-b3b4-f15cfd86bee5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Custom Domains (and SSL)

2015-09-29 Thread Jay
I'm not sure if this question is best here or Stackoverflow. 
I am looking to use the feature recently moved to the google cloud console 
to add an SSL certificate. We are already using a custom domain.
Here is the new thing I ran into. When I log in and look at a particular 
project, on which we already have a custom domain setup, I see nothing. It 
looks like we have not set anything up. A colleague of mine logs in and 
does the same thing, on the same project, and he sees a custom domain 
already configured. This is before we get to the stage of setting up the 
SSL.

So we are seeing two different things. This makes me nervous. It also means 
that I can't, apparently, setup the SSL, he would have to do that. Surely, 
the configuration here is not tied to the user in some way. I must be 
missing something.

Thanks for any insight or suggestions.

-- Jay

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/bad44534-3043-4e33-9ddc-e1f80d31a493%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Problem : unable to find valid certification path to requested target

2015-09-29 Thread Patrice (Cloud Platform Support)
Hi Sandeep,

According to the second message on this thread, I believe that what he did 
was add the certificate to his cacerts folder, which you seem to be doing 
in your step 6.

Can you link to the site where you found these in case I need to 
investigate further?

Thanks

On Tuesday, September 29, 2015 at 8:21:02 AM UTC-4, Sandeep N wrote:
>
> Hi I followed the below steps which I got from a different site and I 
> could not yet resolve the same issue.
> Would you plz share me the steps you followed to resolve the issue.
>
> Steps to import Google' SSL certifcate 
> = 
>
> (1) Visit https://appengine.google.com/ using your browser (I tried 
> this using IE6 but I am sure other browsers will have a similar 
> functionality). 
>
> (2) Click the "Lock" icon at the status bar. You will see Certificate 
> dialog. Click "Details" tab. 
>
> (3) Click "Copy to" button and follow the wizard. Select "DER 
> encoded.." on the Export File Format page. Click "Next" 
>
> (4) Browse to some folder, give it a name and click "Save". Example: c: 
> \dev\keystore\google.cer 
>
> (5) Run the below command from your JRE/BIN folder. Make sure you 
> adjust the locations of -keystore and -file in the below command. 
>
> keytool -import -keystore C:\programs\Java\jre6\lib\security\cacerts - 
> file c:\dev\keystore\google.cer 
>
> (7) Try Deploy again. If your Deploy tool is using the same JRE where 
> you imported the google SSL certificate in above steps, you should be 
> fine now. 
> --
>
>
>
> On Tuesday, July 27, 2010 at 1:00:41 PM UTC+5:30, Phil wrote:
>>
>> I've found my problem. I needed to add the certificate of Google into 
>> my cacerts of java. 
>>
>> Thanks 
>>
>> On 26 juil, 12:02, Phil  wrote: 
>> > Hello, 
>> > 
>> > I've created the example code 'guestbook'. However, when I upload the 
>> > program, I receive this error : 
>> > 
>> > com.google.appengine.tools.admin.AdminException: Unable to update app: 
>> > sun.security.validator.ValidatorException: PKIX path building failed: 
>> > sun.security.provider.certpath.SunCertPathBuilderException: unable to 
>> > find valid certification path to requested target 
>> > at 
>> > com.google.appengine.tools.admin.AppAdminImpl.update(AppAdminImpl.java: 
>> > 62) 
>> > 
>> > I use the OS linux (Ubuntu). 
>> > 
>> > What could be the problem? 
>> > 
>> > Many 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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9917297b-89ce-495f-b524-475fac8509f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Post on Google plus Wall

2015-09-29 Thread Ryan (Cloud Platform Support)
Salutations,

Is this what you are looking for?  


On Monday, September 28, 2015 at 8:01:34 PM UTC-4, kcc pac wrote:
>
> hi all,
>
> I had tried using gplus.moment.insert to put a post on Google Plus Wall. 
> But, I got HTTP code of 500. After I further investigate on the API, I 
> found that moment api is no longer supported. Just wonder if there are 
> other means to post message on Google Plus Wall programmatically.
>
> Thanks.
>
> Colin
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/103fa37f-b024-4347-b556-5884a7446751%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: AppEngine WordPress - Transfer of ownership

2015-09-29 Thread Alejandro Gonzalez

In order to download the code or to be able to deploy new code you need to 
be listed as a developer (or admin) in the application console. The only 
way to achieve that is asking the application owner (or another admin) to 
invite you as a developer (or admin) from the appengine console. Once you 
have access the console (from https://appengine.google.com/) you should be 
able to manage the application code.



El martes, 29 de septiembre de 2015, 18:15:51 (UTC+2), Alejandro Gonzalez 
escribió:
>
> Hello Bobby,
>
> You can download the code deployed on AppEngine and create a local server 
> with it. Checkout this documentation: 
> https://cloud.google.com/appengine/docs/php/tools/uploadinganapp#PHP_Downloading_source_code
>
> Hope that helps.
> Cheers!
>
>
>
> El martes, 29 de septiembre de 2015, 17:54:44 (UTC+2), Swizzle Collective 
> escribió:
>>
>> I've been asked to support a WordPress website that was deployed on 
>> AppEngine, I can log into the site at appspot just fine.   
>>
>> The documentation on how to setup an install of WordPress on AppEngine 
>> ends with "keep a copy of the local version handy, for making future 
>> updates"  I don't have a copy of the local version, when I attempted to 
>> make a backup using (wp clone) a plugin already installed in wordpress, I 
>> get an error that PHP doesn't have permission to write the backup.
>>
>> Any advice as to how I can create a local version, and what accounts I 
>> need to be added to in order to deploy future updates?   The staff that 
>> hired me, at least so far, has been unable to answer even basic questions 
>> thus far. 
>>
>> Super grateful for any help. 
>>
>> Bobby
>>
>>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/b38e8292-cfc3-4daa-8d97-488595536a52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: AppEngine WordPress - Transfer of ownership

2015-09-29 Thread Alejandro Gonzalez
Hello Bobby,

You can download the code deployed on AppEngine and create a local server 
with it. Checkout this 
documentation: 
https://cloud.google.com/appengine/docs/php/tools/uploadinganapp#PHP_Downloading_source_code

Hope that helps.
Cheers!



El martes, 29 de septiembre de 2015, 17:54:44 (UTC+2), Swizzle Collective 
escribió:
>
> I've been asked to support a WordPress website that was deployed on 
> AppEngine, I can log into the site at appspot just fine.   
>
> The documentation on how to setup an install of WordPress on AppEngine 
> ends with "keep a copy of the local version handy, for making future 
> updates"  I don't have a copy of the local version, when I attempted to 
> make a backup using (wp clone) a plugin already installed in wordpress, I 
> get an error that PHP doesn't have permission to write the backup.
>
> Any advice as to how I can create a local version, and what accounts I 
> need to be added to in order to deploy future updates?   The staff that 
> hired me, at least so far, has been unable to answer even basic questions 
> thus far. 
>
> Super grateful for any help. 
>
> Bobby
>
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/dff401c2-9fe1-4c09-861f-b157d7414ee8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Custom Domains (and SSL)

2015-09-29 Thread Ryan (Cloud Platform Support)
Salutations Jay, 

You may need to verify the domain yourself. You should see a banner at the 
top of the Customer domain page:

The custom domain feature has been migrated here from Google Apps. To get 
started, verify ownership of your domains by completing step 1.

Let me know if this helps.

On Tuesday, September 29, 2015 at 10:24:49 AM UTC-4, Jay wrote:
>
> I'm not sure if this question is best here or Stackoverflow. 
> I am looking to use the feature recently moved to the google cloud console 
> to add an SSL certificate. We are already using a custom domain.
> Here is the new thing I ran into. When I log in and look at a particular 
> project, on which we already have a custom domain setup, I see nothing. It 
> looks like we have not set anything up. A colleague of mine logs in and 
> does the same thing, on the same project, and he sees a custom domain 
> already configured. This is before we get to the stage of setting up the 
> SSL.
>
> So we are seeing two different things. This makes me nervous. It also 
> means that I can't, apparently, setup the SSL, he would have to do that. 
> Surely, the configuration here is not tied to the user in some way. I must 
> be missing something.
>
> Thanks for any insight or suggestions.
>
> -- Jay
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/28dbaaba-1c43-40c6-ad0f-df6ad579a40e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] AppEngine WordPress - Transfer of ownership

2015-09-29 Thread Swizzle Collective
I've been asked to support a WordPress website that was deployed on 
AppEngine, I can log into the site at appspot just fine.   

The documentation on how to setup an install of WordPress on AppEngine ends 
with "keep a copy of the local version handy, for making future updates"  I 
don't have a copy of the local version, when I attempted to make a backup 
using (wp clone) a plugin already installed in wordpress, I get an error 
that PHP doesn't have permission to write the backup.

Any advice as to how I can create a local version, and what accounts I need 
to be added to in order to deploy future updates?   The staff that hired 
me, at least so far, has been unable to answer even basic questions thus 
far. 

Super grateful for any help. 

Bobby

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c613f6e4-22a2-463b-8cbd-51be204a4305%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Google App Engine version 1.9.27 SDK available

2015-09-29 Thread 'Sang Park' via Google App Engine
Hello!

We have released a new version of the GAE 1.9.27 SDK.  Here are the items
included.

*All*:


   - Applications that are newly enabled for billing now default to an
  unlimited daily budget, and no longer default to a maximum daily
budget of
  $0. This prevents unwanted outages due to running out of budget. To set a
  ceiling on your application's daily cost, after you enable billing, set a
  budget in the app engine settings
  .
  For more information, see Setting a daily budget
  

  .

*Datastore*:


   - Bugfix: Repeated numeric facets are now allowed.
  - Faceted Search is now GA.

Online release notes: *Python
 | Java
 | PHP
 | Go
*


Thank you,
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/CABtYa4FvAJdpP2%3DPN%2B_OMW%3Db8V%2Bfo%2BejvwDZ%3D8tMm4RDHL%2B_DA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Are blob keys guessable?

2015-09-29 Thread Ryan (Cloud Platform Support)
I can't speak to how the keys are generated but take a look at the bellow 
keys. They are all the same file uploaded with the same code within a few 
moments of each other. They are unique enough it would take a bruit force 
attack to find a key that could be used:

AMIfv951k5FTlQxC-6nljafbiyiRJvWkcVhbuCbBvFcSu6cuf_IV2x1f_OIhkQ-Q1OnPp0HN6hKKbXMS4S_C3dgt5zGhQcWKHOZy2ALjOXVr20o9PhPWT8Wmbu4oxJU7gmAXfVQtttYBheQvpJFbOkH_qnilNdWmh_UYNiZjy_O9ioV_SJnH-PM

AMIfv954myPMnDkCeYlHSMUj2noCiBqD-BtaxwZw7Raf_LGg62IOlgOK44PpysRDX5BWEQE5NfzvtS-xVV4BL9kh1eH2lx7l5fWQWJSEQR8vL8JCAOq12A2LuzvUdLK3e9jwXNwx7UCVI1EeUipVXUvABT9tauNJ_DRBBlL8bqNE99QzfXijCFQ

AMIfv97UzePJVVqYjnxkAf5d_-tG88gzxp9DcttAeUdZ10NUpMTVmYG2QttDDOSNzztFzHVnRa4rcy-BWeLlN9ZRZzEEXI2TXWUIxn1tzwW_QgYSJP60YWb5bt_khIPnUAWIbij-FQEdMycGDada_it6WoPky5hCS0cjVtAJ4tr2p7NuRxIo2_c

AMIfv97MrdriwZpoTkLGxc2sEFwfXIMXwz7Dt3f7IH9Iljb9S57f6amI8ZB8H70VwfkLVOnPvhoDNW7iyTUhiqtafSsFu7L6w3U_qxqzaGJNez8XGLLYeZCwBUWRre-6eeodyTzzohB7zgrEvTp4j9B1K99HU5Secp2cZNW0VW4i9co-o352eqw

AMIfv95anW6Qio_APu5La6ZBAs9ZUvaXcO5x8JeN0CW0knMnLtCFSWiAFe0laElTfbguW71WPO7UpKtFK_ijUTSNOgvT6w2T-0YWKawlHaBvyVnDFRZAcdsbGdIeBAcQOnXsJ6D_dDkKLBi73SHTIXB9LTr_oZUbpVOxiLHQOZa8h58ubozYu0E

On Sunday, September 27, 2015 at 3:23:50 PM UTC-4, Rob Curtis wrote:
>
> Hi, 
>
> I can't find any information on this in the documentation;
> Are blob keys guessable? 
> Is it safe to expose stringified blob key to a user?
>
> Thanks
> Rob
>
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/160a6d4a-427d-4fba-83c6-c32d98f2d47d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How to best handle data stored in different locations in Google BigQuery?

2015-09-29 Thread Philipp Singer
One more thing - I think there should be some easy way to copy tables 
between datasets from different locations; this could somehow ease the 
whole process. Currently, I always need to export the table to a bucket in 
the same location, copy the export to a bucket in another location, and 
then import it again in BigQuery.

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e1f5b65b-1a9e-460f-810b-b5a0b5e64698%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: App engine deployment error - SSLHandshakeException: unable to find valid certification path to requested target

2015-09-29 Thread Nick (Cloud Platform Support)
Hey Sandeep,

This group isn't meant to be used to post specific technical issues. It's 
more appropriate to post more general discussion of the platform and 
services here. A thread which might be valid in this group would be one 
discussing in general how SSL is done on the App Engine deployment servers. 
However, for your issue, you should definitely post to stackoverflow 
 or serverfault .

Useful information to provide when you post there:

* What OS are you using to develop?
* Can you provide more verbose output from the debug tool?
* Where did you get the advice to manually interact with your trust store?

On Tuesday, September 29, 2015 at 8:09:36 AM UTC-4, Sandeep N wrote:
>
> Hi Team,
>
> I get the below exception when I tried to deploy my first 'Guestbook' 
> application. I had completed all local machine testing successfully before 
> the deployment.
>
> Exception message:
>
> 
> javax.net.ssl.SSLHandshakeException: 
> sun.security.validator.ValidatorException:
> PKIX path building failed: 
> sun.security.provider.certpath.SunCertPathBuilderExce
> ption: unable to find valid certification path to requested target
>
> 
>
> I exported SSL certificate of https://appengine.google.com/ and then 
> imported into my Keystore using the below commend.
>
> 
> keytool -import -keystore "C:\Program 
> Files\Java\jdk1.7.0\jre\lib\security\cacerts" -file 
> "D:\GAE\google.cer" -alias google-app-engine
>
> 
>
> But the issues still comes. I went through many discussion on the same 
> topic and I could not yet resolve the issue. I tried all possibilities and 
> nothing worked.
> Plz help me with some solutions.
>
> Thanks,
> Sandeep
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/eaa53694-b192-47b6-b6f1-cd379a050be9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: About design of the application which supports mobile and web browser

2015-09-29 Thread Nick (Cloud Platform Support)
Hey Vijay,

Cloud Endpoints are a great solution for implementing a REST API which 
follows best-practices and allows OAuth security, etc. Any performance 
implications need to be profiled and measured by yourself. From a 
completely unscientific guess, I'd say it's about as efficient as other XHR 
/ API javascript libraries, although once again remember you'll need to 
test and this is just based on my gut feelings and having used Endpoints 
quite a lot, observing the milliseconds per request. If you have very 
rigorous performance requirements you'll need to do performance validation 
of your own to be confident.

On Tuesday, September 29, 2015 at 2:50:42 AM UTC-4, vijay kumar wrote:
>
> We are developing the application which supports both mobile and web 
> application in google app engine. Most of the things are developed using 
> google cloud endpoints, is there any performance effect using the endpoints 
> in web applications. As an average we are using 10-15 endpoints in browser 
> web page using google javascript endpoint library. these endpoints need to 
> refresh data from server for certain interval of time. Is it causes 
> performance effect.
>
>
> Could you please suggest us, is there any better and securely implement 
> applications which support both mobile and web application.
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e2d3a516-3453-49d4-a8b5-9480a456816b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Sample App Deployment Issue: Latest SDK Version not supported

2015-09-29 Thread Nick (Cloud Platform Support)
Hey Stephan,

Apologies, I had missed the lower part of the output. The error message you 
see usually results when the project in question is not owned or deployable 
for the account you've auth'd to the SDK with. If you're using appcfg, try 
deleting ~/.appcfg_oauth2_tokens or ~/.appcfg_oauth2_tokens_java. If you're 
using the gcloud, try running gcloud auth list to see which account you're 
auth'd as. It could also result from a mis-spelling of the app id, so check 
that as well.

On Tuesday, September 29, 2015 at 12:04:08 AM UTC-4, Stephan Hofmann wrote:
>
> Thanks Nick.
>
> That means I have to keep digging, as my app is actually NOT deploying.
>
> Best,
> Stephan
>
>  
>
> On Monday, September 28, 2015 at 3:48:42 PM UTC-7, Nick (Cloud Platform 
> Support) wrote:
>>
>> Hey Stephan,
>>
>> This is a known issue, and you can safely ignore the message. There was 
>> just a thread 
>> 
>>  
>> about this the other day. It should disappear in a future SDK release. In 
>> general, you should always be sure to update your SDK to the latest 
>> release, although that's not the problem here and as said, you can rest 
>> assured knowing there's nothing wrong with your system.
>>
>> Best wishes,
>>
>> Nick
>>
>> On Monday, September 28, 2015 at 6:00:42 PM UTC-4, Stephan Hofmann wrote:
>>>
>>>
>>> Hi all,
>>>
>>>
>>> I tried to deploy the example app from the Google Developer Console to 
>>> the App Engine. 
>>>
>>>
>>> The first error I'm getting is:
>>>
>>> 
>>>
>>> The API version in this SDK is no longer supported on the server!
>>>
>>> ---
>>>
>>> Latest SDK:
>>>
>>> Release: 1.9.26
>>>
>>> Timestamp: Tue Jul 28 12:00:50 PDT 2015
>>>
>>> API versions: [1]
>>>
>>>
>>> ---
>>>
>>> Your SDK:
>>>
>>> Release: 1.9.26
>>>
>>> Timestamp: Wed Aug 12 11:30:50 PDT 2015
>>>
>>> API versions: [1.0]
>>>
>>>
>>> ---
>>>
>>> Please visit https://developers.google.com/appengine/downloads for the 
>>> latest SDK.
>>>
>>> 
>>>
>>>
>>> After that, it keeps telling me that the App Id could not be found:
>>>
>>>
>>> Sep 28, 2015 1:49:06 PM 
>>> com.google.appengine.tools.admin.AbstractServerConnection send1
>>>
>>> WARNING: Error posting to URL: 
>>> https://appengine.google.com/api/appversion/getresourcelimits?app_id=aetest-1082=1;
>>>
>>> 404 Not Found
>>>
>>>
>>> This application does not exist (app_id=u'aetest-1082').
>>>
>>>
>>> #
>>>
>>>
>>> Your help is much appreciated.
>>>
>>>
>>> Best regards,
>>>
>>> Stephan
>>>
>>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/fe97f575-6fc8-4e57-87cc-1386c7867efd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Custom Domains (and SSL)

2015-09-29 Thread Jay
Thanks to you both. Ryan, that was it. I needed to verify domain ownership 
using my own account. At that point the custom domain showed up and 
everything worked as expected.

Thanks again for the help.

On Tuesday, September 29, 2015 at 11:38:55 AM UTC-5, Ryan (Cloud Platform 
Support) wrote:
>
> Salutations Jay, 
>
> You may need to verify the domain yourself. You should see a banner at the 
> top of the Customer domain page:
>
> The custom domain feature has been migrated here from Google Apps. To get 
> started, verify ownership of your domains by completing step 1.
>
> Let me know if this helps.
>
> On Tuesday, September 29, 2015 at 10:24:49 AM UTC-4, Jay wrote:
>>
>> I'm not sure if this question is best here or Stackoverflow. 
>> I am looking to use the feature recently moved to the google cloud 
>> console to add an SSL certificate. We are already using a custom domain.
>> Here is the new thing I ran into. When I log in and look at a particular 
>> project, on which we already have a custom domain setup, I see nothing. It 
>> looks like we have not set anything up. A colleague of mine logs in and 
>> does the same thing, on the same project, and he sees a custom domain 
>> already configured. This is before we get to the stage of setting up the 
>> SSL.
>>
>> So we are seeing two different things. This makes me nervous. It also 
>> means that I can't, apparently, setup the SSL, he would have to do that. 
>> Surely, the configuration here is not tied to the user in some way. I must 
>> be missing something.
>>
>> Thanks for any insight or suggestions.
>>
>> -- Jay
>>
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/932f92f9-f645-497e-9928-13b7ec77f35c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: What is the state of GAE php?

2015-09-29 Thread Stuart Langley
As mentioned above, PHP on GAE just went to general availablility, and 
there are definetly no plans to turn down this service.

Currently, we do all our development inside of Google and not in github. 
The two major peices we work on are

a) The PHP SDK which is released as part of the general app engine release 
cycle. We push bulk changes we make to the SDK 
to https://github.com/GoogleCloudPlatform/appengine-php-sdk when there is a 
new GAE release.
b) The GAE PHP PECL extension. This code is currently not open sourced 
although we are looking at putting it on github.

https://github.com/GoogleCloudPlatform/appengine-php contains very few GAE 
specific changes from stock PHP, and therefor we infrequently update the 
github repository. Ultimately this code is not that interesting for GAE 
developers when compared to (a) and (b) above.

As for the blog - I just haven't had time to write any interesting 
articles. If you can think of anything worth adding to the blog, please let 
me know.

Regards,
Stuart

On Wednesday, 23 September 2015 05:33:02 UTC+10, Nick (Cloud Platform 
Support) wrote:
>
> Hey Jukka,
>
> I can't say I'm aware of any such plan. Be aware that once something is 
> General Availability, which PHP just went into the other week, it will be 
> only deprected after at least 1 year of warning. You can read about the 
> deprecation policy in several places [1] 
> 
>  
> [2]  [3] 
> . 
>
> As or the appengine-php repository, it may have been updated a long time 
> ago, meaning it's pretty much stable, but the PHP SDK 
>  has seen 
> activity only 22 days ago. Not unreasonable for a release-based schedule.
>
> I hope this has helped put you at ease with knowledge that PHP is very 
> much supported and developing on the platform.
>
> Sincerely,
>
> Nick
>
> On Tuesday, September 22, 2015 at 1:13:52 PM UTC-4, Jukka Hautakorpi wrote:
>>
>> I would like to know that what is the state of google app engine php, is 
>> it still going to be a developed product or is it already in the "to be 
>> killed" list ?
>>
>> Why am i asking this? Because 
>> https://github.com/GoogleCloudPlatform/appengine-php  has not been 
>> updated at all.
>>
>> And the blog https://gae-php-tips.appspot.com/ has not been updated in 
>> over half year.
>>
>> Im using gae php for my apps and i'd hate to see it shut down.
>>
>>
>>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4096176d-b721-4638-9a71-8a69de06da82%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Post on Google plus Wall

2015-09-29 Thread kcc pac
Ryan,

Yes, Google+ Domain API has all I need. The only problem is that I can not 
afford to pay the per user fee as my application is for experiment only. I 
just like using the messaging feature to introduce the circle members my 
app. If I wasn't able to do that, I would have to find other means to do 
that.. 

Colin

PS: Private messaging can be my solution. It is only available in Google+ 
domain API but not in Google + API.

On Tuesday, September 29, 2015 at 1:04:16 PM UTC-4, Ryan (Cloud Platform 
Support) wrote:
>
> Salutations,
>
> Is this what you are looking for?  
> 
>
> On Monday, September 28, 2015 at 8:01:34 PM UTC-4, kcc pac wrote:
>>
>> hi all,
>>
>> I had tried using gplus.moment.insert to put a post on Google Plus Wall. 
>> But, I got HTTP code of 500. After I further investigate on the API, I 
>> found that moment api is no longer supported. Just wonder if there are 
>> other means to post message on Google Plus Wall programmatically.
>>
>> Thanks.
>>
>> Colin
>>
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/900e39ab-dea7-4bf8-9ea5-419e07add6fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Post on Google plus Wall

2015-09-29 Thread Ryan (Cloud Platform Support)
I do not *believe* there is. You might want to post on their Groups 
 or Issue Tracker 

 
to get more information.

On Monday, September 28, 2015 at 8:01:34 PM UTC-4, kcc pac wrote:
>
> hi all,
>
> I had tried using gplus.moment.insert to put a post on Google Plus Wall. 
> But, I got HTTP code of 500. After I further investigate on the API, I 
> found that moment api is no longer supported. Just wonder if there are 
> other means to post message on Google Plus Wall programmatically.
>
> Thanks.
>
> Colin
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/fa497eb2-19d5-40d1-bbff-a256399c1cff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: How to best handle data stored in different locations in Google BigQuery?

2015-09-29 Thread Philipp Singer
Patrice - Thanks for your response.

If anyone comes up with an idea of how to approach this, please let me know 
:)

Cheers, Philipp

Am Dienstag, 29. September 2015 07:12:59 UTC-7 schrieb Patrice (Cloud 
Platform Support):
>
> Hi Phillip,
>
> I've been waiting to see if someone from the community here has a brillant 
> idea for your conundrum. Seems like not.
>
> Honestly, with the use case you have, I don't see a good way to cut on 
> costs. The best I could think of would be that you can always zip or encode 
> the data in your bucket before sending it to EU. It's not much, but it'll 
> minimize the size of the data you have to send over to the EU. I don't see 
> much else that can help you unfortunately.
>
> Cheers!
>
> On Friday, September 25, 2015 at 12:51:39 PM UTC-4, Philipp Singer wrote:
>>
>>
>> My current workflow in BigQuery is as follows:
>>
>>
>> (1) query data in a public repository (stored in the US), (2) write it to 
>> a table in my repository, (3) export a csv to a cloud bucket and (4) 
>> download the csv on the ubuntu server I work on and (5) work with that on 
>> the server.
>>
>>
>> The problem I have now, is that the server I work on is located in EU. 
>> Thus, I have to pay quite some fees for transfering data between my US 
>> bucket and my EU server. I could now go ahead and locate my bucket in EU, 
>> but then I still have the problem that I would transfer data from the US 
>> (BigQuery) to EU (bucket). So I could also set my dataset in bq to be 
>> located in the EU, but then I cant do any queries anylonger, because the 
>> data in the public repository is located in the US, and queries between 
>> different locations are not allowed.
>>
>>
>> I am querying the public reddit comment data. My final ubuntu server that 
>> I work on is a machine that is located in the EU, so I can't change that.
>>
>>
>> Does anyone have an idea of how to approach this?
>>
>

-- 
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 http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d9520b44-26b7-4d5f-be94-aa75ff440f18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.