Restsharp: КАК: отправить HTTP-сообщение для сложного объекта с помощью RestSharp

Созданный на 4 окт. 2013  ·  3Комментарии  ·  Источник: restsharp/RestSharp

Может ли кто-нибудь посоветовать, как отправить сообщение HTTP с указанными ниже параметрами запроса.

{
    "key": "example key",
    "message": {
        "html": "<p>Example HTML content</p>",
        "text": "Example text content",
        "subject": "example subject",
        "from_email": "[email protected]",
        "from_name": "Example Name",
        "to": [
            {
                "email": "[email protected]",
                "name": "Recipient Name"
            }
        ],
        "headers": {
            "Reply-To": "[email protected]"
        },
        "important": false,
        "track_opens": null,
        "track_clicks": null,
        "auto_text": null,
        "auto_html": null,
        "inline_css": null,
        "url_strip_qs": null,
        "preserve_recipients": null,
        "view_content_link": null,
        "bcc_address": "[email protected]",
        "tracking_domain": null,
        "signing_domain": null,
        "return_path_domain": null,
        "merge": true,
        "global_merge_vars": [
            {
                "name": "merge1",
                "content": "merge1 content"
            }
        ],
        "merge_vars": [
            {
                "rcpt": "[email protected]",
                "vars": [
                    {
                        "name": "merge2",
                        "content": "merge2 content"
                    }
                ]
            }
        ],
        "tags": [
            "password-resets"
        ],
        "subaccount": "customer-123",
        "google_analytics_domains": [
            "example.com"
        ],
        "google_analytics_campaign": "[email protected]",
        "metadata": {
            "website": "www.example.com"
        },
        "recipient_metadata": [
            {
                "rcpt": "[email protected]",
                "values": {
                    "user_id": 123456
                }
            }
        ],
        "attachments": [
            {
                "type": "text/plain",
                "name": "myfile.txt",
                "content": "ZXhhbXBsZSBmaWxl"
            }
        ],
        "images": [
            {
                "type": "image/png",
                "name": "IMAGECID",
                "content": "ZXhhbXBsZSBmaWxl"
            }
        ]
    },
    "async": false,
    "ip_pool": "Main Pool",
    "send_at": "example send_at"
}

Я не уверен, как это сделать с помощью RestSharp.

Самый полезный комментарий

Привет,

1) Переведите свой JSON в POCO (http://json2csharp.com/ отлично подходит для этого).
2)
var yourobject = новый MyObject{.....................};
var json = JsonConvert.SerializeObject(ваш объект);

клиент var = новый RestClient (url);

запрос var = новый RestRequest (actionPath, Method.POST);
запрос .AddParameter("application/json; charset=utf-8", json, ParameterType.RequestBody);
запрос .RequestFormat = DataFormat.Json;

_client.ExecuteAsync (restRequest, ответ => ........);

Все 3 Комментарий

Привет,

1) Переведите свой JSON в POCO (http://json2csharp.com/ отлично подходит для этого).
2)
var yourobject = новый MyObject{.....................};
var json = JsonConvert.SerializeObject(ваш объект);

клиент var = новый RestClient (url);

запрос var = новый RestRequest (actionPath, Method.POST);
запрос .AddParameter("application/json; charset=utf-8", json, ParameterType.RequestBody);
запрос .RequestFormat = DataFormat.Json;

_client.ExecuteAsync (restRequest, ответ => ........);

спс и мне!

Для потомков RestSharp теперь имеет встроенные методы для этого.
Ознакомьтесь с методом AddJsonBody() RestRequest
В любом случае это правильно для RestSharp 105.0.1.0 и выше.

Была ли эта страница полезной?
0 / 5 - 0 рейтинги