I have an android app that wants to include image sending in the instant messaging client. I'm terribly confused on the way to do this using the blobstore or google cloud storage. Can someone please outline the steps to achieve this from the backend perspective? My goal is to end up using getServingUrl and have an external url for the app to hit and get the image. I'm using java and google cloud endpoints.
So far, I have: 1. createUploadUrl 2.user blogstore service .getUploads() to get BlobKeys 3.find my specific blob key (by ID, blobs.get(ID) i think) 4. magic 5. figure out how to use .getServingUrl(options) on a specific blob 6. backend works.
Please include code or psuedocode in your response, as I've been working on this for days and am beyond exhausted. I could really use someone to ELI5.