rinik
rinik

Reputation: 123

Can I use Google Drive as a substitute for amazon s3 for my android app?

I'm doing a kinda music app where user can send edited songs to other users. Normally when the user send the song first the song uploaded to s3 and then the destination user downloads from it. Instead of s3 can I use the corresponding users drive and save the song in it and sending the link of that song. Is it possible?

Upvotes: 3

Views: 1457

Answers (1)

Vladimir Mukhin
Vladimir Mukhin

Reputation: 565

Yes, it's possible.

Here is some info about how to do it programmatically: https://developers.google.com/drive/v2/reference/

Anyway, If you expect a lot of users for your application, it's better to use S3 because it's more scalable and better suits for high load systems.

Upvotes: 2

Related Questions