[google-appengine] Checking the consent screen

2020-06-08 Thread JP Freire

I need to check the consent screen, but I have a problem. As I understand 
it, my application needs to be external so that different domains like @ 
gmail.com have access. However, my home screen is exclusive to my clients, 
and therefore contains an authentication url. What do I need to do in this 
case?

I don't know if this is the best place to take this doubt, but that's what 
I found

-- 
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/2f165cdc-3924-4ba4-8f0f-9b5ed05cc0b3o%40googlegroups.com.


[google-appengine] GAE Firewall - Allowing Access for PubSub Push Subscriptions?

2017-10-07 Thread JP Robinson
Howdy all,

I'm attempting to restrict access to a 'development' project via the new 
GAE Firewall.

This project relies on push-style subscriptions for PubSub but I can't seem 
to find any magic CIDR block (similar to UrlFetch's *0.1.0.40*) that would 
allow messages to be delivered.

Does such a CIDR block exist? If not, are there plans to add one?

thanks,
-JP

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/077464f1-b302-478b-aef5-000e83b41c18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Google Apps No Longer Free

2012-12-07 Thread JP
Yeap Steve,

Bigger issues like to live in a 3rd world country.

Yours humbly.

jp



On Friday, December 7, 2012 6:18:18 AM UTC-3, Steve Daniels wrote:
>
> Hi Thomas,
>
> I don't mean to show disrespect, but if your startup can't afford $50 to 
> send email from a Google Apps address, then you've probably got bigger 
> issues.
>
> Yours Respectfully,
>
> Steve
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/VwsIloO1HSYJ.
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] GQL Query

2010-08-11 Thread jp
Hi

Can anyone teach me how to do insert delete and update statement for
GQL

thanks in advance

-- 
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] looking for a project

2008-11-23 Thread JP

Hi,

I want to contribute in a GAE open source project, is anybody looking
for a partner?

Regards,
JP
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] ContactsService, no attribute 'HTTPSConnection'

2008-11-15 Thread JP

Hi people,

I'm having problems when trying to retreive google contacts using
programatic login, let me show you my code...

class MainPage(webapp.RequestHandler):
  def get(self):

gd_client = gdata.contacts.service.ContactsService()
gd_client.email = '[EMAIL PROTECTED]'
gd_client.password = 'password'
gd_client.source = 'exampleCo-exampleApp-1'
gd_client.ProgrammaticLogin()


when the code executes I get the following error...

Traceback (most recent call last):
  File "D:\google_appengine\google\appengine\ext\webapp\__init__.py",
line 499, in __call__
handler.get(*groups)
  File "D:\google_appengine\src\gcontacts\main.py", line 22, in get
gd_client.ProgrammaticLogin()
  File "D:\google_appengine\src\gdata\gdata\service.py", line 491, in
ProgrammaticLogin
headers={'Content-Type':'application/x-www-form-urlencoded'})
  File "D:\google_appengine\src\gcontacts\atom\http.py", line 93, in
request
connection = self._prepare_connection(url, all_headers)
  File "D:\google_appengine\src\gcontacts\atom\http.py", line 234, in
_prepare_connection
return HttpClient._prepare_connection(self, url, headers)
  File "D:\google_appengine\src\gcontacts\atom\http.py", line 157, in
_prepare_connection
return httplib.HTTPSConnection(url.host)
AttributeError: 'module' object has no attribute 'HTTPSConnection'

Any idea?


I'm using programatic login because authsub login was giving me a lot
of headaches , maybe I need to study a more python/GAE.

if you have a working sample of google contacts service using authsub
login , that would be very useful too!

Thanks in advance.

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: Customize login page

2008-10-26 Thread JP

Hi all,

Can I display login page in another language?

JP



On Oct 17, 11:00 am, Fred <[EMAIL PROTECTED]> wrote:
> As a further note - to customize the application name that appears on
> the log-in screen, go to your application dashboard, click
> 'Application Settings' and then change the application title. Finally,
> re-deploy your application and the new name will appears in the log-in
> screen!
>
> On Sep 25, 6:15 am, "Calvin Spealman" <[EMAIL PROTECTED]> wrote:
>
> > Which is a google-run app, and the undoubtedly have permissions and
> > knowledge of things we haven't or wont be given access to. They would need
> > to find a secure way to let you customize this page, without allowing any
> > attacks. It is not an extremely simple thing to fix.
>
> > On Thu, Sep 25, 2008 at 12:32 AM, Sudhir <[EMAIL PROTECTED]> wrote:
>
> > > how about the moderator.appspot.com page? they have a customized
> > >login
>
> > > On Sep 24, 1:40 am, Sam G <[EMAIL PROTECTED]> wrote:
> > > > It is possible to add a logo if you have tethered the domain to your
> > > > Google Apps account.
> > > > It uses the logo you upload for Google Apps.
> > > > Beyond that, the only things that are dynamic on theloginpage is
> > > > your domain name and your application name.
>
> > > > I'm sure that Google wants to maintain a constant user experience
> > > > throughout all of their products, so a user knows what aloginscreen
> > > > looks like.
>
> > > > Sam
>
> > > > On Sep 23, 10:16 am, neich <[EMAIL PROTECTED]> wrote:
>
> > > > > Hi,
>
> > > > > I've been searching in the docs for any info on how to customize the
> > > > > Google Accountloginpage. The users.create_login_url() method doesn't
> > > > > have any parameter (other than destinationurl). So, Am I right ? Is
> > > > > it impossible to customize theloginpage ? It would be great to be
> > > > > able to add some logo, or some personalized text.
>
> > > > > Nacho
>
> > --
> > Read my blog! I depend on your acceptance of my opinion! I am 
> > interesting!http://techblog.ironfroggy.com/
> > Follow me if you're into that sort of 
> > thing:http://www.twitter.com/ironfroggy

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---