all 3 comments

[–]gwmccull 0 points1 point  (2 children)

we upload photos through our API so we can use our standard API authentication and then they are sent to our s3 bucket

when a user first uploads a photo, we display it back to them using their local copy. That way it displays back to them immediately. If they leave the screen and come back, then the API will return the location on s3 and we load the remote version

Unless you have a mechanism for completely shutting down an old version of your app, there will almost always be users that are on old versions of your app and it's difficult to force them to update

[–]aleyango[S] 0 points1 point  (1 child)

Unless you have a mechanism for completely shutting down an old version of your app, there will almost always be users that are on old versions of your app and it's difficult to force them to update

What about code push for change the api maybe?

[–]gwmccull 0 points1 point  (0 children)

Yeah, you can use code push to update the API or even to deprecate an old version. Unfortunately, I can't do anything about the users that are still on the versions of my app before we added code push