Yotam
Yotam

Reputation: 10485

Uploading images to Google platform

I am writing an Android application that allows users to upload and share photos. The server is based on Google App Engine. App Engine's datastore does not allow to save file, so currently I just have URLs saved. Looking for a way to store files I read about Google Cloud Storage. My question is - if I'm looking for a host for user uploaded files, is Google Cloud Storage what I'm looking for?

Upvotes: 0

Views: 126

Answers (2)

Romin
Romin

Reputation: 8806

Yes. Google Cloud Storage is the way forward. There is also the BlobStore API on App Engine that allows you to store large amounts of information but the road map seems to be clear i.e. use Google Cloud Storage moving forward.

The reason for going with GCS will also be influenced that eventually you might want various tools or utilities that people have written that work directly with GCS. With Blobstore API, you will need to write those utilities yourself or rely on Admin console's support for taking backup,etc - which is not really much.

In summary, go with GCS.

Upvotes: 2

Zig Mandel
Zig Mandel

Reputation: 19835

Yes thats what you want. Says the same if you read the docs about google cloud storage.

Upvotes: 0

Related Questions