2016-03-29 73 views
0

有一個用於調查的應用程序。我想使用REST API並在調查中添加一些問題。所以基本上我想更新調查的一些頁面。這是該應用程序的鏈接。REST post方法難度

我調查的名字是審判,我想更新的頁面數爲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

使用System.Net.Http.HttpClient類將請求發送到任何API。有關發送各種請求(GET,POST等)的教程和示例可以參見here

+0

謝謝你的幫助。我的代碼中仍然存在一些錯誤。但我現在得到了邏輯。 – Karen

+0

仍然有一些錯誤。你可以幫我嗎? – Karen

+0

@凱倫:除非你發佈一些代碼,我無法幫助你... –