makeWebRequest error -202 INVALID_HTTP_METHOD_IN_REQUEST

Dudes just in case someone else is feeling lost:

In case you have successful web requests in some models, but are getting -202 error with some fenix 6 pro or maybe other recent devices, check this tip:

don't specify method in options parameter (i've just commented mine below with /* ... */ for example)

 var options = {
            /*:method => Communications.HTTP_REQUEST_METHOD_GET,*/
            :headers => {
                "Content-Type" => Communications.REQUEST_CONTENT_TYPE_JSON,
                "Authorization" => apiKey
            },
            :responseType => Communications.HTTP_RESPONSE_CONTENT_TYPE_JSON
        };

hope it helps.