c#里边 http 的get 请求可以携带json格式的body吗?

如题:
我对接一个云物联网平台,有一个rest接口是get类型的请求,但是要求在body中传送接json格式的参数
我使用RestSharp,使用request.AddJsonBody但是给我返回一个"ErrorMessage": "Http verb GET does not support body",

var client = new RestClient(url);
var request = new RestRequest(Method.GET);
request.AddHeader("cache-control", "no-cache");
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Host", "****");
request.AddHeader("Authorization", ******************);
request.AddHeader("tlinkAppId", clientId);
request._AddJsonBody_(new { userId = userId, sensorId = sensorId });

get不可以,必须是post才可以,这个和C#无关,是http协议规定的。你可以咨询下对方的平台,怎么会这么奇怪的要求