return 404 when using Communications.makeImageRequest with this url https://tile.openstreetmap.org/15/16924/11672.png

Hello.

I try to get an url with an application and get 404.

It's not possible to view Http traffic logs  and I don't know why I cant' see it.

When I move this picture to my web server   https://riedid74.fr/15/16924/11672.png

all is good and I display the picture correctly  on the watch.

Is it a restriction to get a picture from  tile.openstreetmap.org

thanks

#######################################################

the code is

        var options = {
           // :palette => [ Graphics.COLOR_WHITE,                     // set the palette
 
           //              Graphics.COLOR_BLACK ],
            :maxWidth => 256,
            :maxHeight => 256,
            :method => Communications.HTTP_REQUEST_METHOD_PUT as Communications.HttpRequestMethod,
            :responseType => Communications.HTTP_RESPONSE_CONTENT_TYPE_TEXT_PLAIN as Communications.HttpResponseContentType,
            :dithering => Communications.IMAGE_DITHERING_FLOYD_STEINBERG,
            :packingFormat => Communications.PACKING_FORMAT_PNG
        };

        // Make the image request
        Communications.makeImageRequest(url, parameters, options, self.method(:onReceiveImage));
function onReceiveImage(responseCode, data) {

      System.println("function onReceiveImage  response="+ responseCode+ "\n"+data);    
         if (responseCode == 200) {
            image = data;
        } else {
            image = null;
            image = data;
        }

}