On Fri, Sep 26, 2014 at 3:07 AM, Dat Do Xuan <[email protected]> wrote:
> I am an Android developer building my first Google App Engine (java) > back-end for my apps. I don't want anybody else to access this API other > than my app. > Is there anyway to do this? It's great if you can help to give some > comments/ideas. > Are you building a backend using the Endpoints API? If you are, you can use the built-in Endpoints authentication service: https://cloud.google.com/appengine/docs/java/endpoints/auth . Note that using this service requires that you create a whitelist of client IDs. If you're not using Endpoints, there are a number of different solutions out there. If you're using a framework, you should investigate whether that framework supplies authentication libraries (most frameworks do). Otherwise you can look into OAuth implementations such as the ones listed here: http://stackoverflow.com/a/17004631 . ----------------- -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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
