Hello Louis-Martin,
There is a wealth of information and step-by-step instructions in the “Using Endpoints in an iOS Client <https://cloud.google.com/appengine/docs/python/endpoints/consume_ios>” document, referring to a more general and more recent “About Cloud Endpoints Frameworks <https://cloud.google.com/endpoints/docs/frameworks/python/about-cloud-endpoints-frameworks>”. Specific to Java, more detail in the com.google.api.server.spi.config <https://cloud-google-com.firelayers.net/appengine/docs/java/endpoints/javadoc/com/google/api/server/spi/config/ApiAuth?hl=srv> document. Authorization-specific details get covered on the “Adding Authorization to the API Backend <https://cloud.google.com/appengine/docs/java/endpoints/add-authorization-backend>” information page. If your Endpoint requires authentication, the iOS app needs a sign-in dialog; en example is provided on this info page. There is a Java-specific requirement with your @ApiAuth annotation: @ApiAuth works as a sub annotation, e.g.: @Api(auth = @ApiAuth(allowCookieAuth = AnnotationBoolean.TRUE)). By using it this way, you make the annotation effective in your Java code. -- 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 https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/3b97c96c-10dc-4b8f-baee-fff0c27b2039%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
