gpt4 book ai didi

c# - Pastebin c# 自动上传

转载 作者:太空宇宙 更新时间:2023-11-03 20:40:46 25 4
gpt4 key购买 nike

我需要我的应用程序将输出上传到 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();

http://pastebin.com/api.php <-- API 来自那里

最佳答案

直到您执行 wr.GetResponse();

请求才真正发送

参见 here ,尽管该示例未能使用 using{}

是可耻的

关于c# - Pastebin c# 自动上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2853558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com