REST post方法难度

时间:2016-03-29 14:00:03

标签: c# ajax api rest post

有一个用于进行调查的应用程序。我想使用REST api并在调查中添加一些问题。所以基本上我想更新一些调查页面。以下是该应用程序的链接。

我的调查名称是试用版,我要更新的页码是2。

字段#updateobject

这是我的代码。但我认为我使用的http调用是不正确的。我无法弄清楚如何提出请求。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net.Http.Headers;

namespace ConsoleApplication1
{

     class Program
     {
        private static object post;
        private static object response;

        static void Main(string[] args)
        {
            RunAsync().Wait();
        }

        static async Task RunAsync()
        {
            string webReq =      "https://restapi.survey.com/v4/survey/trial/surveypage/2?_method=POST?api_token="/*token goes here*/;
           // $.post{webReq};

        }
    }
}

1 个答案:

答案 0 :(得分:1)

使用System.Net.Http.HttpClient类向任何API发送请求。可以找到有关发送各种请求(GET,POST等)的教程和示例here