我需要我的应用程序上传输出到pastebin但我不能让它工作这是代码
WebRequest wr = WebRequest.Create(@"http://pastebin.com/api_form.php");
ASCIIEncoding encoding = new ASCIIEncoding();
byte[] bData = encoding.GetBytes(string.Concat("paste_code=", sOutput, "&paste_private=0&paste_expire_date=1D&paste_subdomain=c4ca4238a0b923820dcc509a6f75849b"));
wr.Method = "POST";
wr.ContentType = "application/x-www-form-urlencoded";
wr.ContentLength = bData.Length;
Stream sMyStream = wr.GetRequestStream();
sMyStream.Write(bData, 0, bData.Length);
sMyStream.Close();
Run Code Online (Sandbox Code Playgroud)
http://pastebin.com/api.php < - apis来自那里