Hi, when I upload images to the glitch assets they are just empty. They are listed in the assets, there is a link, but the image itself is non existent. If I use the link for my afram app then it´s just as if no picture was used.
I am sorry that you are not able to see the images that you are uploading to assets!
I checked the project and was able to view the images. This leads me to believe that there is a security setting somewhere on your system that is blocking the domain, “glitch.global”
If you are on a shared internet connection, like at work or school, then
“glitch.global” might be blocked by a firewall. In that case, you will need to contact the internet administrator and ask them to add “glitch.global” to their “allow list”.
If you are on a personal internet connection, then you can check the security settings for your browsers and ISP to see if the block is happening there.
So, I saw this post the other day and thought of a pretty easy solution. Upload your requested file to imgur.com or img.willm.xyz and then use this command in the Glitch terminal: wget [imgur/imghost URL here]. This will save the file locally and allow you to access it from your project (be mindful of disk space though)
And there’s another way (which I haven’t tested since I don’t have the same firewall settings as your workplace), but I’m hopeful it will work since Glitch/AWS acts as a proxy.
Upload your asset to Glitch as you normally would, and then use the same terminal command above but remove the ?v=1646823596233 part from the URL. So, for your use case I would do: wget https://cdn.glitch.global/2251f141-cb3f-4b7e-9934-a5dc6728dd3c/vr-image-futuristic-sci-fi-city-modern-fiction-skyscrapers-buildings-galaxy-discover-spacescape-119014727.jpg
This will save your image to the Glitch project as vr-image-futuristic-...-119014727.jpg compared to the imgur/imghost way of a random ID followed by the file type.
I hope this works for you, as I’ve typed way more than I probably should have haha.