I'm building an iOS app, and i have a custom back end that i'm using for authentication and other stuff ( i'm not maintaining it, so i don't know much about it, except the swagger documentation for end points).
We have arrived at a point were we need to provide a way for our users to store some photos, and it has been decided that we should either user Google's Firebase or Amazon's bucket service.
I've decided to go with Google, cause i find the documentation easier to read for a beginner like me.
Now i'm thinking my bucket structure should look something like: Users -> user -> user's photo.
So i need to basically duplicate what users i have already in the custom back end, in firebase? I'm not sure how should i approach this, and any hints would be helpful.
Thanks.