RestSharp JSONパラメータの投稿


141

MVC 3 APIに対して非常に基本的なREST呼び出しを行おうとしていますが、渡したパラメーターがアクションメソッドにバインドされていません。

クライアント

var request = new RestRequest(Method.POST);

request.Resource = "Api/Score";
request.RequestFormat = DataFormat.Json;

request.AddBody(request.JsonSerializer.Serialize(new { A = "foo", B = "bar" }));

RestResponse response = client.Execute(request);
Console.WriteLine(response.Content);

サーバ

public class ScoreInputModel
{
   public string A { get; set; }
   public string B { get; set; }
}

// Api/Score
public JsonResult Score(ScoreInputModel input)
{
   // input.A and input.B are empty when called with RestSharp
}

ここで何か不足していますか?

回答:


211

自分で体をシリアル化する必要はありません。するだけ

request.RequestFormat = DataFormat.Json;
request.AddBody(new { A = "foo", B = "bar" }); // uses JsonSerializer

代わりに単にPOSTパラメータが必要な場合(これは引き続きモデルにマップされ、JSONへのシリアル化がないため、はるかに効率的です)、次のようにします。

request.AddParameter("A", "foo");
request.AddParameter("B", "bar");

4
両方とも。2番目のアプローチははるかに高速です。
ウェズリータンジー、2011年

4
あなたは行うことができますAddObject(new { A = "foo", B = "bar" })オブジェクトのプロパティを取り、パラメータに変換され、あまりにも
ジョン・シーハンに

62
自分自身をjsonizeしたい人のために:request.AddParameter("text/json", body, ParameterType.RequestBody);
カイルパターソン

1
@KylePattersonを使用して、独自のISerializerを実装し、それを使用するようにRestClient.JsonSerializerを設定することもできます。
John Sheehan 2013年

2
request.AddBody(new ...最初の例では、後に廃止された括弧が1つあります。
ベンジャミン

54

RestSharpの現在のバージョン(105.2.3.0)では、次のようにしてJSONオブジェクトをリクエストの本文に追加できます。

request.AddJsonBody(new { A = "foo", B = "bar" });

このメソッドは、コンテンツタイプをapplication / jsonに設定し、オブジェクトをJSON文字列にシリアル化します。


1
このリクエストにファイルを添付するには?
OPV 2017

1
オブジェクトにどのように名前を付けますか?例えば。"details":{"extra": "stuff"}を送信する必要がある場合?
mdegges 2018

@OPV次のように、リクエストにファイルを追加できます。request.AddFile(pathToTheFile);
Chris Morgan、

1
あなたは、本体として匿名クラスを使用している場合@mdeggesはあなたの例のセットアップのようなJSONの外観を持っている。このようなRestSharp要求: var client = new RestSharp.RestClient("http://your.api.com"); var request = new RestSharp.RestRequest("do-something", Method.POST); var body = new {details = new {extras = "stuff"}}; request.AddJsonBody(body); var response = client.Execute(request);
クリス・モーガン

43

これは私にとってうまくいきました、私の場合、それはログイン要求の投稿でした:

var client = new RestClient("http://www.example.com/1/2");
var request = new RestRequest();

request.Method = Method.POST;
request.AddHeader("Accept", "application/json");
request.Parameters.Clear();
request.AddParameter("application/json", body , ParameterType.RequestBody);

var response = client.Execute(request);
var content = response.Content; // raw content as string  

体 :

{
  "userId":"sam@company.com" ,
  "password":"welcome" 
}

2
本体をc#コードにどのように挿入しますか?as string body = "{" userId ":" sam@company.com "、" password ":" welcome "}"; 動作しません。
Kynao

1
"string body = @" {"" userid ""、... "の代わりに" "を使用する必要があります
Vitaly Ascheulov

7

これが誰かを助けることを願っています。それは私のために働いた-

RestClient client = new RestClient("http://www.example.com/");
RestRequest request = new RestRequest("login", Method.POST);
request.AddHeader("Accept", "application/json");
var body = new
{
    Host = "host_environment",
    Username = "UserID",
    Password = "Password"
};
request.AddJsonBody(body);

var response = client.Execute(request).Content;

request.AddHeader("Accept", "application/json");正解はのようです。
Bimal Poudel

0

Listオブジェクトがある場合は、次のようにしてそれらをJSONにシリアル化できます。

List<MyObjectClass> listOfObjects = new List<MyObjectClass>();

次に使用しますaddParameter

requestREST.AddParameter("myAssocKey", JsonConvert.SerializeObject(listOfObjects));

そして、リクエストフォーマットをJSON次のように設定する必要があります:

requestREST.RequestFormat = DataFormat.Json;
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.