Skip to content

Instantly share code, notes, and snippets.

@alexeyzimarev
Created December 30, 2018 21:08
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alexeyzimarev/c00b79c11c8cce6f6208454f7933ad24 to your computer and use it in GitHub Desktop.
Save alexeyzimarev/c00b79c11c8cce6f6208454f7933ad24 to your computer and use it in GitHub Desktop.
Using Newtonsoft.Json with RestSharp v106.6
using Newtonsoft.Json;
using RestSharp;
using RestSharp.Serialization;
namespace JsonNetRestSharp
{
class Program
{
static void Main(string[] args)
{
var client = new RestClient("https://my.api.com")
.UseSerializer(new JsonNetSerializer());
}
public class JsonNetSerializer : IRestSerializer
{
public string Serialize(object obj) =>
JsonConvert.SerializeObject(obj);
public string Serialize(BodyParameter bodyParameter) =>
JsonConvert.SerializeObject(bodyParameter.Value);
public T Deserialize<T>(IRestResponse response) =>
JsonConvert.DeserializeObject<T>(response.Content);
public string[] SupportedContentTypes { get; } =
{
"application/json", "text/json", "text/x-json", "text/javascript", "*+json"
};
public string ContentType { get; set; } = "application/json";
public DataFormat DataFormat { get; } = DataFormat.Json;
}
}
}
@greynoO
Copy link

greynoO commented Jan 15, 2019

I am using the latest version and IRestSerializer, BodyParameter and .UseSerializer(...) do not exist?

@drewfreyling
Copy link

It should be:

    public class JsonNetSerializer : IRestSerializer
    {
        public string Serialize(object obj) => 
            JsonConvert.SerializeObject(obj);

        public string Serialize(Parameter parameter) => 
            JsonConvert.SerializeObject(parameter.Value);

        public T Deserialize<T>(IRestResponse response) => 
            JsonConvert.DeserializeObject<T>(response.Content);

        public string[] SupportedContentTypes { get; } =
        {
            "application/json", "text/json", "text/x-json", "text/javascript", "*+json"
        };

        public string ContentType { get; set; } = "application/json";

        public DataFormat DataFormat { get; } = DataFormat.Json;
    }

@willchis
Copy link

@greynoO I updated to 106.6.9 in order to get this to work. The suggested method .UseSerializer(new JsonNetSerializer()); is also marked as deprecated so I used this overload instead:
.UseSerializer(() => new JsonNetSerializer());

@thompcd
Copy link

thompcd commented Feb 12, 2020

I had the same experience as @willchis on 106.6.10. Excited to see Newtonsoft make a comeback in 107.

@alexeyzimarev
Copy link
Author

@eddypv
Copy link

eddypv commented Feb 21, 2020

@greynoO I updated to 106.6.9 in order to get this to work. The suggested method .UseSerializer(new JsonNetSerializer()); is also marked as deprecated so I used this overload instead:
.UseSerializer(() => new JsonNetSerializer());

@willchis it works like this

var request = new RestRequest();
request.JsonSerializer = new JsonNetSerializer();

@stevevg
Copy link

stevevg commented Aug 6, 2020

Thanks! Using Newtonsoft.Json, deserization works even with DataMember annotated properties, whereas built-in deserializer seems to ignore those properties, always returning default value for associated type.

@ferradario
Copy link

This is becoming so annoying!

Please update documentation that still reports full support for newtonsoft...

image

@alexeyzimarev
Copy link
Author

@ferradario the documentation is correct. Take your annoyance somewhere else.

@alexeyzimarev
Copy link
Author

@stevevg that is correct, SimpleJson uses the SerializeAs and DeserializeAs attributes.

@centu81
Copy link

centu81 commented Nov 16, 2020

So what is the final usage of Newtonsoft.Json in RestSharp?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment