如何诊断PHP curl POST和C#WebClient POST之间的区别?

时间:2013-04-19 14:28:08

标签: c# php http curl webclient

我有PHP代码,如下所示:

$url = "http://my.parkpay.co.za/includes/api.php"; # URL to WHMCS API file goes here
$postfields["username"] = $username;
$postfields["password"] = md5($password);
$postfields["accesskey"] = "4a588e76-4e1c-4240-baad-4d2d6e3433cf";
$postfields["responsetype"] = "json";
$postfields["action"] = "addbillableitem";
$postfields["clientid"] = "3";
$postfields["description"] = "Test From PHP Code";
$postfields["amount"] = "250.00";
$postfields["invoiceaction"] = "nextinvoice";

foreach ($postfields AS $k=>$v) $query_string .= "$k=".urlencode($v)."&";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $query_string);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$jsondata = curl_exec($ch);
if (curl_error($ch)) {
    die("Connection Error: ".curl_errno($ch).' - '.curl_error($ch));
}
curl_close($ch);

C#代码如下:

public string PostTestBillableItem()
{
    const string username = "{username}";
    var passwordHash = Md5Hash({passwordHash});
    var formFields = new[]
                            {
                                new KeyValuePair<string, string>("username", username),
                                new KeyValuePair<string, string>("password", passwordHash),
                                new KeyValuePair<string, string>("accesskey", "4a588e76-4e1c-4240-baad-4d2d6e3433cf"),
                                new KeyValuePair<string, string>("responsetype", "json"),
                                new KeyValuePair<string, string>("action", "addbillableitem"),
                                new KeyValuePair<string, string>("clientid", "3"),
                                new KeyValuePair<string, string>("description", "Payment Towards Web Design Project"),
                                new KeyValuePair<string, string>("amount", "250.00"),
                                new KeyValuePair<string, string>("invoiceaction", "nextinvoice")
                            };
    var postData = formFields.Aggregate("", (current, pair) => current + (pair.Key + "=" + HttpUtility.UrlEncode(pair.Value) + "&"));
    var client = new WebClient();
    var result = client.UploadString("http://my.parkpay.co.za/includes/api.php", postData);
    return result;
}

当我执行PHP代码时,在IIS 7.5上,我得到了一个成功的响应。当我执行看似相同的C#代码时,由于我的IP地址而被阻止。我使用`accesskey'值可以防止IP地址检查。它与PHP代码有关,而与C#代码无关。

我可以使用哪些工具来检查离开请求HTTP?在每种情况下发布的表单数据是相同的,包括密码哈希,所以我想我正在寻找消息中的标题或编码差异。

3 个答案:

答案 0 :(得分:0)

根据您粘贴的功能,发布数据不相同。不是长篇大论。

您在C#代码中有不同的访问键和更多参数,如果再次使用相同的参数运行它会发生什么?

答案 1 :(得分:0)

  1. 我不是c#用户,但Aggregate函数会返回一个带“&amp;”的字符串最后可能会导致问题。

  2. 你可以检查urlencode函数的返回值是否php和c#使用相同的rfc编码

  3. 如果不是这种情况,那么您可以使用wireshark来分析数据包。

答案 2 :(得分:0)

我认为我使用的是Fiddler,而不是Wireshark,我记不清了,但区别在于cURL隐含地添加了WebClient没有的两个标题。以下添加解决了这个问题:

var client = new WebClient();
client.Headers.Add("Accept", "/");
client.Headers.Add("Content-Type", "application/x-www-form-urlencoded");