Questions tagged [gae-userservice]

Google AppEngine service which provides information useful for forcing a user to log in or out, and retrieving information about the user who is currently logged-in.

17 questions
5
votes
1 answer

Multiple Auth Providers with AppEngine, Webapp2, and Cloud Endpoints Proto Datastore

I'm working on a webapp that will allow users to authenticate using simpleauth. For now I will be supporting Google and Facebook. Other than logging in and out (using webapp2), the webapp will consist of Cloud Endpoint APIs. The clients will be web,…
2
votes
1 answer

Custom User login in AppEngine

I have a Java Servlet backend with a datastore connected to my app; I am trying to implement a login system using the Android Studio LoginActivity template, using the user's email and password (not the PlusBaseActivity handling the Google Account…
Cris
  • 2,002
  • 4
  • 30
  • 51
2
votes
0 answers

AppEngine Cloud Endpoints and custom Users service

Is it possible to use a custom Users service (a service that implements UsersService interface) with Google AppEngine endpoints? Let's take the example from Google AppEngine website @ApiMethod(name = "greetings.authed", path =…
1
vote
1 answer

Google App Engine - Multiple User sessions

My application uses Google OAuth2 alongside Spring security. The sample implementation is here. The problem is >> I have multiple users signed in my chrome browser.User can be normal Google user or Google Apps Domain user as well. I dont get why my…
1
vote
1 answer

How does UserService class work?

I am trying to implement a login system using the Android Studio LoginActivity template. On AppEngine, I try the two lines: UserService userService = UserServiceFactory.getUserService(); User user = userService.getCurrentUser(); but the user is…
Cris
  • 2,002
  • 4
  • 30
  • 51
1
vote
2 answers

Can User Role from Google Apps be retrieved inside Google App Engine Application

I have a Google App Engine application for the use of Google Apps users. For that I need the roles and priviledges of users to be reflected in Google App Engine application. But using UserServices API I am only able to retrieve nick name, email ID…
1
vote
2 answers

How to use OAuth2 / OpenID Connect with UserService?

I'm running several apps on Google App Engine. I am using the UserService for Authentication to be able to send emails on behalf of the user etc. and OAuth2 for API authorization. I am now trying to publish the apps on the Google Apps Marketplace,…
1
vote
1 answer

UserService in GWT

I am writing a test application for using Google's App Engine. I would like to provide login functionality using the default UserService. To login, a request i made from the client to the server: public class ShoppingList implements EntryPoint…
emher
  • 5,634
  • 1
  • 21
  • 32
0
votes
1 answer

Google UserService logoutUrl with Angular #

I am using the Google UserService to get login and logout URLs for my app engine Angular application and am trying to pass the path for the redirect as a query param. This is an example of an Angular URL: http://localhost:8080/#/dashboard In Java I…
0
votes
0 answers

How to automatically log out from Google App Engine application after logging out of other Google serivices

I what my GAE app to be logout, when the user logout from an other google service. I have SSO implemented in my domain. have read this post.
Chandan Reddy
  • 499
  • 4
  • 23
0
votes
2 answers

What user is provided by App Engine Devserver

What user is provided by App Engine's devserver when requesting the user from UserService, OAuthService or Cloud Endpoints Injection?
0
votes
1 answer

Access GAE datastore from background thread

I'm writing a web app through Google App Engine and I'd like to have a script frequently update user profiles based on live, temporary information I'm getting from an XML feed. I'm doing this with a GAE background_thread so the site can continue to…
0
votes
1 answer

How to capture email address in app engine?

I have created an application in app engine for our company. Only the domain users can access the application .How can i capture the email address in Google App Engine without any authentication ? I tried to capture the email address on application…
BipinSasi
  • 187
  • 14
0
votes
1 answer

App Engine returns error when used with User Services

I was trying to interate User Service to my App to restrict access. The app worked fine while in eclipse but once I deployed it to app engine it does not redirect to Google Login page as expected but comes with Error: Server Error The server…
sunny_side_of_life
  • 149
  • 1
  • 3
  • 15
0
votes
0 answers

GAE BlobStore : After Uploading a file successfully, google appengine throws null exception when calling user.getEmail()

I am using Google blobstore service to upload a file. I did the following steps Login in to the application using the UserService I used the blobstoreservice.createUploadUrl(successpath) After the file is upload, the callback url 'sucesspath' is…
user3145999
  • 21
  • 1
  • 5
1
2