1

这就是我所拥有的

using Windows.Web.Http;
using Windows.Web.Http.Headers;

public async static Task<bool> FormPost(List<KeyValuePair<string, string>> varvaluepair, string hosturl)
{
    try
    {
        Uri cURI;
        if (Uri.TryCreate(hosturl, UriKind.Absolute, out cURI) && (cURI.Scheme == "http" || cURI.Scheme == "https"))
        {
            var client = new HttpClient();
            client.DefaultRequestHeaders.UserAgent.ParseAdd("ie");
            client.DefaultRequestHeaders.UserAgent.ParseAdd("Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)");

            var content = new HttpFormUrlEncodedContent(varvaluepair);
            content.Headers.ContentType = new HttpMediaTypeHeaderValue("application/x-www-form-urlencoded");

            var response = await client.PostAsync(cURI, content);
            if (response.IsSuccessStatusCode)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        else
        {
            return false;
        }
    }
    catch (Exception ex)
    {
        return false;

这是我从回复中得到的:

{StatusCode: 404, ReasonPhrase: 'Not Found', Version: 2, Content: Windows.Web.Http.HttpStreamContent, Headers:
{
  Connection: keep-alive
  Server: nginx admin
  Date: Sun, 11 May 2014 15:46:32 GMT
}{
  Content-Length: 335
  Content-Type: text/html; charset=iso-8859-1
}}  Windows.Web.Http.HttpResponseMessage

我的主机收到提交值,除了 404 的响应和返回 false 而不是 true 的函数外,一切正常。

这就是我发送的方式:

string tmpAddress = "http://www.somewhere.com";
var tmpData = new List<KeyValuePair<string, string>>
{
    new KeyValuePair<string, string>("Name", "Jibah xxxxxxxxxxxx"),
    new KeyValuePair<string, string>("Email", "jibah.kxxxxx@xxxx.com"),
    new KeyValuePair<string, string>("Feedback", "Test submission to see the response"),
    new KeyValuePair<string, string>("form_tools_form_id", "225")
};
bool tmpResult = await FormPost(tmpData, tmpAddress);

以及来自 Formtool 网站的结果(我无法发布图像) 图像捕获

原谅我的英语。谢谢。

4

1 回答 1

0

我不确定这是展示我的发现的正确方法(有人请纠正我,更正这个答案)

它不在 C# 代码中。这response不是PostAsync发送的内容,而是调用的服务发送的内容。该服务可以正常接收但返回不存在的重定向页面。这是 Formtool 的问题。

Formtool 中有一个设置,用于在 Formtool 提交和接收表单时返回重定向 URL。Formtool 中设置的重定向 URL 确实是一个不存在的页面,因此是 404。

于 2014-05-13T02:14:23.123 回答