I am making an app where a user can add a bunch of websites and I will pull the Favicon for that website and store it in a tiny little imageView. I am using Firebase. Regarding the actual pulling of the Favicon.
I have found that adding /favicon.ico
to the end of a URL shows you the Favicon. I also found this SO post.
But my question is more on how to best deal with getting the image for all users overall, not for just one user. My ideas are:
For every user for every website pull the favicon and store on Firebase each time.
As users add websites create a list (maybe a set) on Firebase (don't know how yet) and if it has already been added don't re add it just pull from that one.
My concern is that if 100 people (hopefully) were to all add like google.com that is 100 uploads of the same exact image, and that feels like a waste.
Can anybody recommend a best practice way?
Thank you.