I run a site that displays a lot of images from users from external URLs. Recently we got a warning for some image URLs which are apparently flagged "unsafe" from Google Save Browsing, which provokes a brutal red error message for all users.
The issue is that the entire site gets blocked as unsafe and of course, users think this is our own site and not the external image URL only.
After some research, we found the Google safe browsing API and Google Webrisk and build our tool on top of it to check each image URL against their APIs.
The issue is that the results are CLEAN for URLs that are UNSAFE found by the https://transparencyreport.google.com/?
I am not sure what we are doing wrong in this case since the APIs seem senseless if they do not report the same URLs unsafe which the transparency report declares unsafe.
Does anyone have similar issues? How can I check if google finds an image URL safe other than using those to APIs from them?
How could I display those external images without getting the ugly warnings from google?
Thanks in advance