有一个用于进行调查的应用程序。我想使用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};
}
}
}