Pastebin c#自动上传

use*_*823 1 c# pastebin

我需要我的应用程序上传输出到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来自那里

小智 5

在您这样做之前,请求实际上并未发送 wr.GetResponse();

看到这里,虽然这个例子在它未能使用时是可耻的using{}