I'm trying to consume an API that for whatever reason requires their access token to be passed as a querystring parameter (ParameterType.GetOrPost).
I noticed that if I call these two methods (order doesn't matter)
request.AddParameter("access_token", token)
request.AddBody(body)
The body doesn't actually get set on the request. I can get around it by setting my request's resource to /resource?access_token=token
I'm using version 104.1.0.0