使用HttpClient提交表单失败

时间:2015-11-27 06:37:59

标签: c# forms submit httpclient

我正在尝试以编程方式在网页上提交表单。我正在我的Wordpress网站的评论表上练习: http://www.smortazavi.com/games/before-eternity/contact/

以下是基于代码的on this post

private async void button_Click(object sender, RoutedEventArgs e)
{
    using (var client = new HttpClient())
    {
        var values = new Dictionary<string, string>
        {
           { "g16-name", "hello" },
           { "g16-email", "myemail@hotmail.com" },
            {"g16-comment", "comment" }
        };

        var content = new FormUrlEncodedContent(values);

        var response = await client.PostAsync("http://www.smortazavi.com/games/before-eternity/contact", content);

        var responseString = await response.Content.ReadAsStringAsync();
    }

    MessageBox.Show("Done!");   
}

当我运行代码时,responseString包含填充的表单输入,但实际上并未提交表单。

你能说我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:0)

快速浏览HTML表明该表单包含2个隐藏字段:

<input type="hidden" name="contact-form-id" value="16">
<input type="hidden" name="action" value="grunion-contact-form">

据推测,那些也需要通过。将上面的名称/值对添加到values词典。

如果仍然无效,请启动您选择的浏览器调试程序(例如Chrome的DevTools中的“网络”选项卡),提交表单,并仔细检查发送的请求以确保URL正确并且您'不要错过任何其他表格字段。您的代码看起来不错,因此它肯定是您缺少的特定于该表单的详细信息。