dgaze Posted December 7, 2016 Share Posted December 7, 2016 Hi I am new to Phaser. I have been asked to load an youtube thumbnail based on a given ID. Without using their API, the thumbnail can be retrieved this way: https://img.youtube.com/vi/<youtube ID>/0.jpg Is there some restrictions when using statements like this: game.load.image("youtubeTN", "https://img.youtube.com/vi/<youtube ID>/0.jpg"); ... ... var sprite = new Phaser.Sprite(game, youtube.x, youtube.y, "youtubeTN"); I was able to load an image locally but the image wouldn't load if it's from an external site. Thanks! Link to comment Share on other sites More sharing options...
squilibob Posted December 8, 2016 Share Posted December 8, 2016 When you press f12 to look at the console log it will give a CORS error. You cannot load an image into your cache from offsite with game.load.image and you will have to try fetch or XMLHttpRequest instead Link to comment Share on other sites More sharing options...
Recommended Posts