Re: [google-appengine] Google Wallet API is not working with new secured image URL.

2015-02-15 Thread Vinny P
On Fri, Feb 13, 2015 at 1:32 AM, prashant nema 
 wrote:

> I am using google Wallet API.We are using secure URL for image saving.I
> have added another secure URL for image saving.I am getting 400
> error(invalid Resource),bad request from google wallet API.But I am not
> getting any error for unsecured URL(http).Secured URL which are added
> before,it is working.Is there any need to add another SSL certificate for
> secured URL?Because It was working with secured URL previously.It is
> showing error for new secured URL.Please give your suggestion.
>



Can you post a minimal test case for this issue? Where exactly in the user
flow are you getting the 400 error, and when/where is the image saving
occurring?

If the old secure URL is different than the new secure URL, and if you're
using it as the redirect URL for the API, have you included the new address
in the authorized redirect list: http://imgur.com/Dn15mlZ ?


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
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/CALSvALDyNUHGLkSvOAVjH5dAx_Ev9XeiZ%3DMUAwj068MfhUgAsQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Enable application runned by GAE to server rdf content

2015-02-15 Thread Vinny P
To be clear, you want to negotiate whether to send back RDF or another type
of content, correct?

You can read up on how content negotiation works here:
http://www.w3.org/TR/cooluris/#implementation but the short version is that
you need to inspect the Accept header and see if the browser will accept
RDF content. If so, you can send back RDF; if not, you send back whatever
content the browser indicates priority to. You can implement this all in
code - the only app.yaml configuration needed is to route the incoming
request



-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com



On Thu, Feb 12, 2015 at 8:40 AM, lh  wrote:

>
> Hi,
>
> I use GAE to run an application. How can I realize content negotiation to
> server application/rdf+xml when it is required with GAE using app.ymal or
> .htaccess. As GAE run by default in port 8080 I made an apache redirection
> using virtual hosts (ProxyPass) from port 80 to 8080.
>
> Should I use app.yaml or .htaccess (and in which folder to create
> .htaccess, GAE or mysite, I tried both but unsuccessful).
> Also checked to some solutions like editing app.yaml using some logic from
> this link https://gist.github.com/darktable/873098 ,etc.
>

-- 
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/CALSvALCV-VehXqgK_wVO4LUr6J6Y9Exggm604XtvGQ5gfc6G7A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Datastore sandbox is available through deploys in other sandboxes.

2015-02-15 Thread Vinny P
On Fri, Feb 13, 2015 at 1:54 PM, Daniela Meneses 
 wrote:

> you get the idea? it's availablefor any kind of matching as long as the
> url have ''-dot-myapp-dev-com-bo.appspot.com''
>
> So i guess it's not a bug that i was thinking previously but there is any
> kind of documentation referring about this behaviour???
>


In an above post Alex linked you to the Python version of the routing
information, but I think the Java version is clearer:
https://cloud.google.com/appengine/docs/java/modules/routing

Essentially, *myapp-dev-com-bo* would be a GAE application ID; anything you
put in before the *-dot-* would be routed to a module/version of the
default module. If nothing matches, then the request is routed to the
default module. So yes, the fact that you're seeing it "available for any
kind of matching" is perfectly acceptable and expected behavior. If you
dislike this behavior, you can use the dispatch file (shown in the above
link) to reroute requests according to your preference.


On Fri, Feb 13, 2015 at 1:54 PM, Daniela Meneses 
 wrote:

> By sandboxes i was referring to different GAE apps. The problem was that i
> was able to access to the datastore of different GAE app trough versions
> deployed in another GAE app. Or that's what I think until today because i
> make some more tests.
>


 I think people were initially confused by your use of the term "sandbox"
to refer to a production environment (production App Engine/deploying to a
live App ID). Normally when people say sandbox, they mean a server that is
isolated from public access or a developer environment on a local machine.
It's not a big deal, but thanks for clarifying.


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
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/CALSvALCQGRfkpJiFJ-zXbvLP6gWj9oE2rLjcVo1%3DRx5gg5vFOA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Should namespace API be used in this situation?

2015-02-15 Thread Vinny P
On Fri, Feb 13, 2015 at 1:09 AM, Chuck  wrote:

> The question is how to map each domain to the app. While the
> functionalities of the sites are the same, the datastore should be
> different (like different datas are stored and there can be different
> languages).
> In namespace API, I think it is suitable for multitenant application and
> I'm not sure if my situation is appropriate to use namespace api. Say you
> want to build es.example.com as a multi-tenant application, then you will
> need to compartmentalizing  each domain first then separate each namespace
> again for each user.  Correct me if I'm wrong.
> If anyone could advise what to use and how it should be approached, I'll
> be grateful. Thanks in advance.
>


The approach you outlined is a perfectly good use of namespaces.

In your post you mention different languages - I would suggest reading up
on how App Engine handles text encoding, such as this issue:
https://code.google.com/p/googleappengine/issues/detail?id=2219


-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
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/CALSvALAEXUn8USkmv2gmqQ4oNKVnjuNnnyFBy7Butbf4ebtu8w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] find owner of domain

2015-02-15 Thread Vinny P
On Fri, Feb 13, 2015 at 8:43 PM, Massimo DiPierro <
massimo.dipie...@gmail.com> wrote:

> Sorry if this is a silly question. Is there way to find out who is the
> owner of an appspot domain? I need to contact one but I there is no contact
> information linked from the pages.
>



No there isn't. If the appspot domain links to a custom domain (example.com)
then you can look up WHOIS data to find out the owner, but the appspot
subdomains don't reveal their owner.



-
-Vinny P
Technology & Media Consultant
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
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/CALSvALA-xV%3DgAFwURJqpCTX71DbAbN0z%3Dbj5EZ68J%2BegtK385w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Understand - what is a instance in GAE? and how to calculate the cost for day?

2015-02-15 Thread 'Alex Martelli' via Google App Engine
StackOverflow is preferred for technical questions related to SW
development on google-app-engine.

This one question (like many, *many* other excellent ones!) has already
been asked and answered: see
http://stackoverflow.com/questions/16782136/how-are-frontend-instance-hours-calculated-on-app-engine
and the two excellent answers it received -- it is the top hit for me on a
web search for: 28 hours app engine .

Alex

On Sun, Feb 15, 2015 at 9:21 AM, Jose Ramirez Tello <
jcramirez.develo...@gmail.com> wrote:

> Hi (sorry for my bad English, I speak Spanish)
>
> I have a question, google provides 28 hours of instances per application /
> day. If I need my aplicaicón "hello world" is available all day and do
> not need additional instances, means that I used at the end of the 24 hours
> of instance. and my other question is how long an instance execution.
>
> thank you very much for your help
>
> --
> 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/f25672d7-b939-4026-a838-395aa9ce87ab%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/CAE46Be_MzbN5Vq8gQfujcaRs%3DwnQmEEeoXbA%2BKaQWh85OFo1Fw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Understand - what is a instance in GAE? and how to calculate the cost for day?

2015-02-15 Thread Jose Ramirez Tello
Hi (sorry for my bad English, I speak Spanish)

I have a question, google provides 28 hours of instances per application / 
day. If I need my aplicaicón "hello world" is available all day and do not 
need additional instances, means that I used at the end of the 24 hours of 
instance. and my other question is how long an instance execution.

thank you very much for your help

-- 
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/f25672d7-b939-4026-a838-395aa9ce87ab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: New Datastore query tool

2015-02-15 Thread Jason Collins
Well, Google I/O is approaching, and I'm sure they'd like to have stuff to 
announce...
j

On Friday, 13 February 2015 17:53:31 UTC-6, husayt wrote:
>
> Hi Mario. 
>
> this is strange considering tool was already much better than current 
> broken one.
>
> Considering that there was no update to 1.9.17 for last two months, this 
> makes me worry. I remember GAE team was very proud by how lean they were 
> and aiming to do monthly release cycles.
>
> Yes there were improvements to Google cloud in general, but no single 
> exciting new feature has been added to Appengine SDK for a whole year now.
>
> See for yourselves:
> https://code.google.com/p/googleappengine/wiki/SdkForJavaReleaseNotes
>
> only minor bug fixes and that's it. 
>
> Unless i miss something, or things are not announced release notes 
> properly, but this really worries me and i am sure many others here.
>
> I am very keen to find out about perspectives of developing with GAE.
>
> Thanks.
> HG
>
>
> On Thursday, February 12, 2015 at 12:34:41 PM UTC, Mario wrote:
>>
>> Hi Huseyn,
>>
>> I'm glad that you liked it.
>>
>> As I said in my previous message we don't have yet any information about 
>> the release date of that feature.
>>
>> Regards
>>
>> Mario C.
>> Google Cloud Platform Support
>>
>> On Wednesday, February 11, 2015 at 3:16:46 PM UTC+1, husayt wrote:
>>>
>>> Yes I use that one, which is extremely slow and buggy.
>>>
>>> For couple of days in january there was updated version which was much 
>>> better, but unfortunately that was replaced with old one again.
>>>
>>> On Wednesday, February 11, 2015 at 10:51:38 AM UTC, camaram wrote:

 Hi again,

 I'd like to confirm that you're using the Query Tool in the Developers' 
 Console [1] and not the one in the old App Engine Console? I was talking 
 about the former one.

 Regards,

 [1] https://console.developers.google.com/project/*YOUR_PROJECT_ID*
 /datastore/query

 On Tuesday, February 10, 2015 at 9:54:48 AM UTC+1, camaram wrote:
>
> Hello H.,
>
> Currently we lack information on when that new Datastore Query tool 
> will be available for public use.
>
> Please, follow the official Google Cloud Platform blog 
> for updates on new products 
> and features.
>
> Mario C.
> Google Cloud Platform Support.
>
> On Thursday, February 5, 2015 at 2:07:25 PM UTC+1, husayt wrote:
>>
>> Hi,
>>
>> we had this new uber cool datastore query tool enabled couple of 
>> weeks ago. That was great, but sadly it was switched back to the old one 
>> next day.
>>
>> I am in anticipation of getting the new query tool back.
>>
>> Can someone from Google please advise?
>>
>> Thanks,
>> Huseyn Guliyev
>>
>

-- 
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/e6316f5a-ec07-420c-9560-f50da37b625c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Cloud Datastore Dashboard not working

2015-02-15 Thread Dmitry Nikolaev
https://console.developers.google.com/m/datastore/metadata?pid=banded-earth-605
(canceled) after 20 s

воскресенье, 15 февраля 2015 г., 17:50:57 UTC+3 пользователь Dmitry 
Nikolaev написал:
>
> We have the same issue. When this problem will be fixed? We pay more than 
> $1000/month and can't use the basic functionality.
>
> вторник, 20 января 2015 г., 6:38:07 UTC+3 пользователь Brad Abrams написал:
>>
>> Thanks for pointing this out... we are seeing a few customers hitting 
>> issues with the datastore viewer in the Developer Console.  We are 
>> investigating... If you see the issue, please to send a feedback report. 
>>  ("Need Help?" at the bottom the left nav, then "send feedback").
>>
>> thanks
>>
>> ..brad
>>
>>
>> On Mon Jan 19 2015 at 7:08:47 PM Omni ITR  wrote:
>>
>>> Hi,
>>>
>>> We are facing the same issue. When I click the "Dashboard" or the 
>>> "Query" under cloud datastore, I get "Failed to Load" message. We are not 
>>> able to see the data in the store like we used to earlier. Seems to have 
>>> started in the last few weeks. We are not over the quota. Any help is 
>>> greatly appreciated. 
>>>
>>>
>>> On Tuesday, June 10, 2014 at 12:08:37 PM UTC-4, Tom Edge wrote:

 I've got the same thing, but I've just noticed that I'm over my 
 datastore read operations quota... Is that the same for everyone else?

  -- 
>>> 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.
>>> 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/aaccfcae-ebe9-4228-999d-b60cc784801a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: Cloud Datastore Dashboard not working

2015-02-15 Thread Dmitry Nikolaev
We have the same issue. When this problem will be fixed? We pay more than 
$1000/month and can't use the basic functionality.

вторник, 20 января 2015 г., 6:38:07 UTC+3 пользователь Brad Abrams написал:
>
> Thanks for pointing this out... we are seeing a few customers hitting 
> issues with the datastore viewer in the Developer Console.  We are 
> investigating... If you see the issue, please to send a feedback report. 
>  ("Need Help?" at the bottom the left nav, then "send feedback").
>
> thanks
>
> ..brad
>
>
> On Mon Jan 19 2015 at 7:08:47 PM Omni ITR > 
> wrote:
>
>> Hi,
>>
>> We are facing the same issue. When I click the "Dashboard" or the "Query" 
>> under cloud datastore, I get "Failed to Load" message. We are not able to 
>> see the data in the store like we used to earlier. Seems to have started in 
>> the last few weeks. We are not over the quota. Any help is greatly 
>> appreciated. 
>>
>>
>> On Tuesday, June 10, 2014 at 12:08:37 PM UTC-4, Tom Edge wrote:
>>>
>>> I've got the same thing, but I've just noticed that I'm over my 
>>> datastore read operations quota... Is that the same for everyone else?
>>>
>>>  -- 
>> 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.
>> 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/c242d013-c79c-4b87-9bd0-c697d6f15525%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Saving Objects in GAE with Python

2015-02-15 Thread timh
Do you mean a custom property ?  As all datastore entities are in fact 
custom objects.

T

On Thursday, February 12, 2015 at 7:40:01 PM UTC+8, Saturnino Mateus wrote:
>
> Hello!
> Is there any way to save custom objects in datastore instead save basic 
> data types?
>
> Regards!
>

-- 
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/9d058286-3b89-45be-bde9-dd811b22d86c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.