gae-userservice

AppEngine Cloud Endpoints and custom Users service

此生再无相见时 提交于 2019-12-08 00:29:20
问题 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 = "greeting/authed") public HelloGreeting authedGreeting(User user) { HelloGreeting response = new HelloGreeting("hello " + user.getEmail()); return response; } When a request is made to the application and this endpoint is hit it somehow contacts the Users service and

How to use OAuth2 / OpenID Connect with UserService?

三世轮回 提交于 2019-12-01 13:29:07
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, but I received an email telling me it is required to use OAuth2 for authentication. As I am just using the supported Google stack I assume there is a way to meet the requirements for publishing my apps on the Google Apps Marketplace but right now I'm stuck. jonathanberi This is similar to another question . The challenge is that the User service is

How to use OAuth2 / OpenID Connect with UserService?

风流意气都作罢 提交于 2019-12-01 11:49:21
问题 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, but I received an email telling me it is required to use OAuth2 for authentication. As I am just using the supported Google stack I assume there is a way to meet the requirements for publishing my apps on the Google Apps Marketplace but right now I