2

我试图转换以下代码

<?php
   // requires PHP cURL http://no.php.net/curl
   $datatopost = array (
      "supplier_id" => "1",
      "token" => "xYRPKcoakMoiRzWgKLV5TqPSdNAaZQT",
      "ci_lineitem_ids" => json_encode ( array (54553919, 54553920) ),
   );
   $ch = curl_init ("https://scm.commerceinterface.com/api/v4/mark_exported");
   curl_setopt ($ch, CURLOPT_POST, true);
   curl_setopt ($ch, CURLOPT_POSTFIELDS, $datatopost);
   curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
   $response = curl_exec ($ch);
   if( $response ) {
      $response_json = json_decode( $response );
      if( $response_json->success == true ) {
        //Successfully marked as exported (only items which are not already marked exported
      } else {

      }
   }

通过使用如下形式的 url 编码内容类代替$datatopostPHP 中的数组,在 C# 中使用 HTTP 客户端

FormUrlEncodedContent markExportedContent = new FormUrlEncodedContent(new[] {
    new KeyValuePair<string,string>("supplier_id",country.supplier_id),
    new KeyValuePair<string, string>("token",country.token),
    new KeyValuePair<string, string>("ci_lineitem_id", JsonConvert.SerializeObject(country.ci_lineitem_ids))
});

然后使用 http 客户端将其发布到 API 但是我得到以下响应

{"reason": "Missing Parameters (ci_lineitem_ids).", "reason_code": 400, "success": false}

我认为它与我用来从字符串数组转换为 json 编码数组JsonConvert.SerializeObject(country.ci_lineitem_ids)Newtonsoft Json包有关,如 PHP 代码中所示。

任何人都能够提供一些关于为什么这不能按预期工作的想法的人,因为我现在对此一无所知,在此之前尝试了多种不同的方法来做到这一点?

4

1 回答 1

1

除非是拼写错误,否则您在 c# 代码中的第三个参数末尾忘记了一个 s。

ci_lineitem_ids 在你的 php 中

ci_lineitem_id 在 c# 中

于 2017-10-17T11:03:35.260 回答