Hi
I'm experiencing very odd behavior with NSURLSessionDataTask. It seems that if I POST to an endpoint that has params in the URL, it will always get sent as GET request, even though I am explicitely setting the HTTPMethod of the NSMutableURLRequest to POST. When POSTing to an endpoint that is straight-foward and has no params in its URL (eg. no ?param=value), then NSURLSession will send it off as a POST request.
Has anyone else experienced this behavior?