On Tue, Oct 15, 2013 at 8:33 PM, Abdel Bolaños <[email protected]> wrote:
> So the question is how to authenticate mobile apps (no users) and prevent > HTTP request (unauthenticated)? I'am building my server API(enpoints) based > on Python. > > If you know the client IDs prior to deploying the application, you can use Endpoint's built-in authentication: https://developers.google.com/appengine/docs/java/endpoints/auth#Java_Specifying_authorized_clients_in_the_API_backend If you don't want to hardcode in authentication access, you can implement your own authentication flow using libraries ( http://oauth.net/code/ ) or use a federated login system such as one listed here: http://en.wikipedia.org/wiki/Federated_identity ----------------- -Vinny P Technology & Media Advisor 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/groups/opt_out.
