簡體   English   中英

C#-vBulletin新線程

[英]C# - vBulletin new thread

我嘗試了這個:

public static void CreateNewThread(string url,string fId, string title, string message, string tag)
{
    url += "newthread.php?do=postthread";

    HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
    //string result = "";

    string values = "subject=" + title
                    + "&message=" + message
                    + "&tag=" + tag
                    + "&do=postthread"
                    + "&f=" + fId
                    + "&s="
                    + ""
                    ;

    req.Method = "POST";
    req.ContentType = "application/x-www-form-urlencoded";
    req.ContentLength = values.Length;

    ServicePointManager.Expect100Continue = false; // prevents 417 error

    using (StreamWriter writer = new StreamWriter(req.GetRequestStream(), Encoding.UTF8))
    {
        writer.Write(values);
    }

    HttpWebResponse c = (HttpWebResponse)req.GetResponse();
}

但這是行不通的!

嘗試對主題和消息參數進行編碼:

HttpUtility.UrlEncode(

string values = "subject=" + HttpUtility.UrlEncode(title)
                    + "&message=" + HttpUtility.UrlEncode(message)
                    + "&tag=" + HttpUtility.UrlEncode(tag)
                    + "&do=postthread"
                    + "&f=" + fId
                    + "&s="
                    + ""
                    ;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM