Why cannot load actor image from TheMovieDatabase server even the links works on browser normaly?

146 Views Asked by At

This is really weird. This simple code can load any picture from net but not from TheMovieDatabase.

(ActorImage is the normal Image created in xaml)

Code is next:

string ImageUrl = "https://image.tmdb.org/t/p/w500/dRLSoufWtc16F5fliK4ECIVs56p.jpg";
BitmapImage ActorBitmapImage = new BitmapImage(new Uri(ImageUrl, UriKind.RelativeOrAbsolute));
ActorImage.Source = ActorBitmapImage;

Most weird thing is that if I open the browser the link works as it should to work.

Any idea what can cause the problem?

0

There are 0 best solutions below