I use Kingfisher with swift 3, I displayed my pictures hosted in a directory on my apache server. I just changed for Google Cloud Plateform, and my picture are hosted now in Google Cloud Storage, but I cannot retrieve my picture anymore, the link seems to be correct because when I use it in a browser, I can see the picture (but the url change in the adress bar)
Link Google storage of my picture :
https://storage.cloud.google.com/dirpicturefortest/53141097041434918.jpg
@IBOutlet var profilPictureCollection: [UIImageView]!
let image = self.profilPictureCollection[picture.rank]
let url = URL(string: "https://storage.cloud.google.com/dirpicturefortest/53141097041434918.jpg")
image.kf.setImage(with: url)
The UIImageView stays empty