I am performing a QueryFeaturesAsync on a ServiceFeatureTable which is configured with the url https://geo.abs.gov.au/arcgis/rest/services/ASGS2021/SA4/MapServer/0
It works fine, except when I have 'large' geometries, e.g. a polygon >12 points in it, I get a 403 (Forbidden) error. I think this is their way of telling me that my GET request is too long. I think the underlying data transferred is JSON, and it seems to have 20+ significant figures in each coordinate. I'm only guessing that ServiceFeatureTable always uses GET. If true, how can I force it to do a POST, which doesn't have size limits?