0
我試圖unseccessfully到下一個標頭中發送到Twitter API發送HTTP POST請求:使用Web客戶端
POST /oauth2/token HTTP/1.1
Host: api.twitter.com
User-Agent: My Twitter App v1.0.23
Authorization: Basic eHZ6MWV2R ... o4OERSZHlPZw==
Content-Type: application/x-www-form-urlencoded;charset=UTF-8
Content-Length: 29
Accept-Encoding: gzip
grant_type=client_credentials
我搜索,發現有一個名爲WebClient.UploadData方法(該方法,隱式地設置HTTP POST作爲請求方法),但我真的不知道 知道如何使用它。
我知道如何使用Set方法更改當前標題。 但是,HTTP正文消息呢?我怎樣才能添加一些正文頭部?(grant_type)
PS:我讀了文檔。
我僅限於WebClient出於教育目的。 – user1341970
看到http://stackoverflow.com/questions/5401501/how-to-post-data-to-specific-url-using-webclient-in-c-sharp – Yaur
哦,這就是我要找的!謝謝你! – user1341970