[google-appengine] Re: authentication for google appengine java

2022-05-05 Thread 'Osvaldo Lopez Acuña' via Google App Engine
Google offers multiple methods of authenticating your app's users in Cloud Platform applications. Each method has different purposes. Maybe this example can help you. In Fireb

[google-appengine] Re: authentication for google appengine java

2022-05-03 Thread 'Rajesh G' via Google App Engine
Hello All, Any examples on how to use firebase authentication with java appengine standard. Documentation did not help me much and dont' know how to put the pieces together in a java servlet environment. On Wed, Apr 27, 2022 at 7:11 PM Rajesh G wrote: > Hello, > I have been using java app en

[google-appengine] Re: Authentication for App Engine by domain

2017-08-30 Thread Brian Naughton
Thanks Kenworth! It turned out that my @gmail persona was also logged into @mydomain, separately from the chrome "Person". This was what I assumed had somehow happened based on my tests. Still, it was pretty unclear how to see what my login status was. I assumed you'd have one google login at a

[google-appengine] Re: Authentication for App Engine by domain

2017-08-29 Thread 'Kenworth (Google Cloud Platform)' via Google App Engine
1- It is possible that you were still logged in to @mydomain.com while you were using @gmail.com when you were trying to access @mydomain GAE site. 2- The incognito mode test that you made was a good idea. Clearing browser sessions and/or cookies works, too. And to make sure that your test env

[google-appengine] Re: Authentication Integration with Google

2016-08-04 Thread Pankaj Jha
Thanks On Monday, August 1, 2016 at 10:51:54 PM UTC+5:30, Nick (Cloud Platform Support) wrote: > > Hey Pankaj, > > As far as I know, we use exclusively OAuth2 in our auth systems, with no > explicit support for ActiveDirectory. If you can manage to read through the > documentation we provide ab

[google-appengine] Re: Authentication Integration with Google

2016-08-01 Thread 'Nick (Cloud Platform Support)' via Google App Engine
Hey Pankaj, As far as I know, we use exclusively OAuth2 in our auth systems, with no explicit support for ActiveDirectory. If you can manage to read through the documentation we provide about our auth systems and determine how that integrates with your AD solution, this is certainly a possibili

[google-appengine] Re: Authentication failure from morning while uploading new code

2016-02-12 Thread 'Zeehad (Cloud Platform Support)' via Google App Engine
Hello Gurcharan, Since you're authenticating using a username and password, it seems like you may be using ClientLogin which has been deprecated

[google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-28 Thread Antoine
UP On 22 fév, 11:50, Antoine wrote: > Is there some Google Employee who can help ? > > On 20 fév, 10:31,Antoine wrote: > > > > > > > > > Hello Robert, > > > this happen when the user is not logged in and try to log the first > > time using my url. > > If the user is logged already (but going stra

[google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-21 Thread Antoine
Is there some Google Employee who can help ? On 20 fév, 10:31, Antoine wrote: > Hello Robert, > > this happen when the user is not logged in and try to log the first > time using my url. > If the user is logged already (but going straight to gmail for > example) then provider list links are displ

[google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-19 Thread Antoine
Hello Robert, this happen when the user is not logged in and try to log the first time using my url. If the user is logged already (but going straight to gmail for example) then provider list links are displayed (which is weird also, because they shouldnt show up as he is already logged-in) and wh

Re: [google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-16 Thread Robert Kluin
Hey Antoine, Sounds like you've got an issue with how the continue url is encoded, but that's a total guess. Does this happen every "first" time, when the user is not logged in? Robert On Fri, Feb 17, 2012 at 01:00, Antoine wrote: > Hello, > > I succeeded to make it work. I didnt ask fo

[google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-16 Thread Antoine
Hello, I succeeded to make it work. I didnt ask for "login:required" because i just need one webpage to be secured (one handler for this page which asks for openid authentication before showing content). But now, I have a problem with the authentication and redirection. Use case : - user go on t

Re: [google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-01 Thread Robert Kluin
Hi Antoine, Glad you got that figured out. You should be able to have login required on your apps, just as before. You'll just need to be sure to define a handler for login_required (as is explained in the article). Note that you won't get redirected to it on the dev server, so you'll need to

[google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-01 Thread Antoine
Ok, I ve found out. this should be the URL for Google Apps domains : www.google.com/accounts/o8/site-xrds?hd=example.com On Feb 1, 4:59 pm, Antoine wrote: > Thank you for your answer. > > I tried to follow this tutorial (I dont know why I didnt find it > before... :s ). > > However, I have a

[google-appengine] Re: Authentication on a GAE App only for a selected Google Apps domains list

2012-02-01 Thread Antoine
Thank you for your answer. I tried to follow this tutorial (I dont know why I didnt find it before... :s ). However, I have a question left. I decided to let the user choose his domain by clicking on his domain link. I deleted the "login required" in app.yaml and modified my main.py such as...

[google-appengine] Re: authentication for non web based python apps

2011-07-28 Thread Ernesto Oltra
Stephen said you could use HTTPS no matter what authentication system you have. And he suggested too hard-coding some random string in your client app and in the server; send it with all your request and check it in the server. As long as you keep that string secure, your system would be secur

[google-appengine] Re: authentication for non web based python apps

2011-07-28 Thread liu
Hi Stephen, Thank you very much for you response. Are you saying I just need to use "https" connection in python like following: >>> conn = httplib.HTTPSConnection('.appspot.com') >>> conn.putrequest('POST', '.appspot.com') >>> conn.putheader('Content-Length', str(len(packet_send))) >>> c

[google-appengine] Re: authentication for non web based python apps

2011-07-28 Thread liu
Hi Stephen, Thank you very much for you response. Are you saying I just need to use "https" connection in python like following: >>> conn = httplib.HTTPSConnection('.appspot.com') >>> conn.putrequest('POST', '.appspot.com') >>> conn.putheader('Content-Length', str(len(packet_send))) >>> c

[google-appengine] Re: Authentication problem

2011-06-20 Thread GAE app developer
Sorry Johan. I will put it in the below mentioned group On Jun 20, 6:06 pm, Johan Euphrosine wrote: > Hi, > > This should be discussed > onhttp://groups.google.com/group/google-api-python-clientas this is not > specific toGoogleAppEngine. > > Thanks in advance. > > On Mon, Jun 20, 2011 at 2:51

Re: [google-appengine] Re: Authentication problem

2011-06-20 Thread Johan Euphrosine
Hi, This should be discussed on http://groups.google.com/group/google-api-python-client as this is not specific to Google App Engine. Thanks in advance. On Mon, Jun 20, 2011 at 2:51 PM, GAE app developer wrote: > from oauth2client.appengine import OAuth2Decorator > > decorator = OAuth2Decorator

[google-appengine] Re: Authentication problem

2011-06-20 Thread GAE app developer
from oauth2client.appengine import OAuth2Decorator decorator = OAuth2Decorator( client_id='', client_secret='', scope='https://www.googleapis.com/auth/buzz', user_agent='buzz-appengine-sample/1.0') http = httplib2.Http(memcache) service = build("buzz", "v1", http=http) class MainHandler(

Re: [google-appengine] Re: Authentication problem

2011-06-20 Thread Johan Euphrosine
You have to use moderator scope: https://www.googleapis.com/auth/moderator As explained in the Moderator API documentation: http://code.google.com/apis/moderator/v1/using_rest.html On Mon, Jun 20, 2011 at 11:27 AM, Saurabh S wrote: > Thanks Johan,that error has been resolved. > > Now after that

[google-appengine] Re: Authentication problem

2011-06-20 Thread GAE app developer
Thanks Johan,that error got resolved. Authentication is working. Thank You On Jun 20, 12:35 pm, Johan Euphrosine wrote: > Hi Rohit, > > If you are running dev_appserver.py, > > make sure the list of Redirect URIs in theGoogleAPIs Console/Api > access section:https://code.google.com/apis/console

[google-appengine] Re: Authentication problem

2011-06-20 Thread Saurabh S
Thanks Johan,that error has been resolved. Now after that it says invalid scope. Error:OAuth 2.0 error: invalid_scope Is there any particular URL for scope or I have to manually enter a url on a particular basis Can you please provide information on this On Jun 20, 12:35 pm, Johan Euphrosine w

Re: [google-appengine] Re: Authentication problem

2011-06-20 Thread Johan Euphrosine
Hi Rohit, If you are running dev_appserver.py, make sure the list of Redirect URIs in the Google APIs Console/Api access section: https://code.google.com/apis/console/ Contains: http://localhost:8080/oauth2callback Note http:// not https://. If you are running the deployed version, make sure i

[google-appengine] Re: Authentication problem

2011-06-19 Thread GAE app developer
Thanks Johan Even though I have signed in using my Gmail account it does not seem to make any difference. It is displaying the same error. And also i tried using the oauthdecorator 1. when I click on yes or no button for a particular submission it requests for login and after I sign in it displays

[google-appengine] Re: Authentication Failed when trying to download_data with appcfg.py

2011-06-01 Thread Arun Shanker Prasad
Hi, I don't who did what.. But it magically started working today :D Thank You VERY much for the person responsible :-) Thanks, Arun. On Jun 1, 12:01 pm, Arun Shanker Prasad wrote: > Hi Robert, > > Thanks for the response, yes I tried with their whole email address, > it's just giving me authen

[google-appengine] Re: Authentication Failed when trying to download_data with appcfg.py

2011-05-31 Thread Arun Shanker Prasad
Hi, Anyone else facing this issue? I am stuck now :( no live data back up Thanks, Arun Shanker Prasad. On May 31, 3:11 pm, Arun Shanker Prasad wrote: > Hi, > > I am getting an 'Authentication Failed' error message while > downloading data from my application. The application is locked to a

Re: [google-appengine] Re: Authentication and XMPP

2011-02-06 Thread jonsm...@gmail.com
Has anything come of this? I've run into the same issue. What you want is an OAuth accessible API for Google's XMPP servers like Twitter has. You can only log into Google XMPP with an account/password. I have embedded devices that send messages and I don't want the user's account/pw in them in cas

[google-appengine] Re: Authentication and XMPP

2011-01-18 Thread bejayoharen
The Channel API is interesting, but it seems purpose built for javascript. I could probably be made to work in other situations, but it seems like it would be a hack. You ask what I am trying to accomplish: I would like a situation where a client app (written in any language) can access both my res

[google-appengine] Re: Authentication and XMPP

2011-01-18 Thread Michael Davidson
Robert is correct. The XMPP API does not provide an XMPP service for your users to log into; it provides a way for your app to participate in the XMPP network. It is analogous to the email API. Your users don't get email accounts with your app, but your app can send email to their existing accounts

Re: [google-appengine] Re: Authentication and XMPP

2011-01-17 Thread Robert Kluin
Having access to an XMPP service and running an XMPP service are two totally different things. To use App Engine's XMPP service, your users just need some type of jabber account to communicate with your app. The service provider handles user-authentication, you could probably ask for a pin or som

[google-appengine] Re: Authentication and XMPP

2011-01-17 Thread bejayoharen
Thanks for your feedback. I should have guessed. I'm not sure if there's much point for me in developing the REST architecture on GAE and then using something else for XMPP -- especially if I have to manage users across the systems. The XMPP implementation is... not well thought out :( bjorn

[google-appengine] Re: Authentication and XMPP

2011-01-16 Thread Ryan
Last I looked GAE's XMPP is limited to just sending stanzas to your application, and having the application respond with a reply . If you want to do anything more complicated with XMPP you have to use your own servers or server components on some other infrastructure. That said, you could still

[google-appengine] Re: Authentication error on appcfg

2010-12-05 Thread NealWalters
I had problems uploading (from Win7) for about 30 minutes. It was complaining about SSL and told me to install some SSL python library. I had trouble getting it to install. Anyway, after 30 minutes or so, things started working as normal (the error just went away). Neal -- You received this me

[google-appengine] Re: Authentication across MULTIPLE apps

2010-07-27 Thread l.denardo
Look into OpenID api. It allows you to authenticate users using the same credential, and if the user is signed in you can implement a good single sign on. User data will anyway be handled separately by each application, since datastore cannot be shared. Links: http://code.google.com/appengine/do

[google-appengine] Re: Authentication with Apps Domain

2010-05-19 Thread gmiller74
Sorry I hadn't thought about the fact that those urls would be activated and cut off. The point is that the URL created by the createLoginUrl call is: has "https : //www.foo.com/ _ah/login %253Fcontinue..." as the "continue" URL (hopefully adding a few spaces will foil the URL activator...) Causi

[google-appengine] Re: Authentication Code from Argentina

2009-11-05 Thread Wooble
Hi, If you are having trouble with SMS verification, or want an additional account activated, please fill out the following form: http://appengine.google.com/waitlist/sms_issues (This is from the following FAQ http://code.google.com/appengine/kb/sms .html#error ) Once you fill out this form, y

[google-appengine] Re: Authentication

2009-09-09 Thread OvermindDL1
On Mon, Sep 7, 2009 at 4:55 PM, woola wrote: > > Has anyone used Google App Engine to make a simple authentication for > Google Apps users? > > My group uses google apps, and I just want their same logins to be > able to function for outside of google apps password checks. It seems > this would be

[google-appengine] Re: Authentication

2009-09-09 Thread Scott Ellis
...so i'm now looking at jsonp to avoid makeRequest 2009/9/9 Scott Ellis > woola: if you deploy your app to their domain, they can log into it...if > it's deployed to multiple domains you can check the user's email > address...you won't get access to google passwords through app engine. > > Kenn

[google-appengine] Re: Authentication

2009-09-09 Thread Scott Ellis
woola: if you deploy your app to their domain, they can log into it...if it's deployed to multiple domains you can check the user's email address...you won't get access to google passwords through app engine. Kenny: there is stuff on the OpenSocial wiki about implementing OAuth on app engine, whic

[google-appengine] Re: Authentication

2009-09-09 Thread Kenny Dunn
I'm in a similar situation. Although, what I really want is to be able to securely identify the user of a Google gadget (on their apps 'iGoogle' page) within the app on the app engine. So far, no luck on either front. On Sep 7, 6:55 pm, woola wrote: > Has anyone used Google App Engine to make a

[google-appengine] Re: Authentication errors with bulk upload

2009-08-31 Thread Mickey Ristroph
My gmail.com account can be used to update, but neither my gmail.com or domain-specific app, which is linked to the App, authenticates when I try to do a bulk download. Interestingly, the "login: admin" in app.yaml does not work either. I just get blank pages. Yes, the order of my handlers in app

[google-appengine] Re: Authentication errors with bulk upload

2009-08-31 Thread Mickey Ristroph
Same problem, using the same account I am using to "appcfg.py update", etc. On ubuntu. This has been driving me completely crazy for some time now, and is why I'm migrating off GAE until it's more stable. On Aug 29, 2:29 pm, Andrew wrote: > I am trying to use appcfg.py to upload and download dat

[google-appengine] Re: Authentication errors with bulk upload

2009-08-31 Thread Nick Johnson (Google)
Hi Andrew, If you created your app with authentication set to the default settings, you currently need to create a @gmail.com account and add it as an administrator for bulk upload etc. If you selected 'apps' authentication for the domain you created the app on, you need to use an account on that d

[google-appengine] Re: Authentication using spread sheet and python.

2009-05-15 Thread S K
Hi i have gone through the following link.. but its taking me long time to understand, can i get any sample code, how to keep data inside spread sheet, and that spread sheet details(what ever we given in spread sheet like user name and password), how can i use for authentication in python co

[google-appengine] Re: Authentication using spread sheet and python.

2009-05-13 Thread Nick Johnson (Google)
Hi S K, You can access the contents of a Google Docs spreadsheet using the Google Spreadsheets API. Documentation is available here: http://code.google.com/apis/spreadsheets/overview.html In addition, you'll need to incorporate a session management system like Beaker, or issue your own cookies,

[google-appengine] Re: Authentication using spread sheet and python.

2009-05-13 Thread S K
Hi Nick, actually my requirement is like this.. i am creating school intranet.. in that different links are there like *Students, Staff, Admin* on click of any link need to ask user name and password if its valid then it should enter in side

[google-appengine] Re: Authentication using spread sheet and python.

2009-05-13 Thread Nick Johnson (Google)
Hi S K, You need to clarify what you're trying to do. Are you trying to access a Google Docs spreadsheet from an App Engine app, trying to access a password protected excel file, or something else entirely? -Nick Johnson On Wed, May 13, 2009 at 10:43 AM, S K wrote: > Hi All, > ca

[google-appengine] Re: Authentication for multiple services in a gadget/appengine app

2008-09-10 Thread Jeff S (Google)
Hi Keith, Using an App Engine app to act as a gadget proxy for making OAuth requests is an idea that I know some people have been thinking about. Right now, I think the only solution is to roll your own OAuth provider, but I think it would be worth entering a feature request in our issue tracker