Trying to get some advise from the community. I have a Cloud Endpoint app, through which I want to save images to Cloud Storage. Having Googled my options, there seems to be multiple ways and libraries of achieving this:
<dependency> <groupId>com.google.apis</groupId> <artifactId>google-api-services-storage</artifactId> <version>v1-rev68-1.21.0</version> </dependency> AND <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud</artifactId> <version>0.20.3-alpha</version> </dependency> OR using the "GcsService gcsService = new GcsService()", along with ImageService Which is the recommended way of saving images (and preferably resizing them before saving) -- 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/5de47c36-2f58-4b32-8bd3-136aa14ea0c6%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
