Ошибка: named_product_ids: ожидается, что Hash будет массивом (встроенное приложение Shopify) - PullRequest
0 голосов
/ 21 февраля 2019

Я отправляю следующий запрос через cURL, все идет хорошо, но есть ошибка с "named_product_id".Он отлично работает в почтальоне, но не в cURL.

Заранее спасибо.

Код запроса cURL

$ch = curl_init();    
curl_setopt($ch, CURLOPT_URL, $access_token_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($pro_ids11));
curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-Shopify-Access-Token: '.$shops_token));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
if (curl_error($ch)) {
    $error_msg = curl_error($ch);
}
curl_close($ch);
if (isset($error_msg)) {
    echo $error_msg;
}

Мой json_encodedкод:

{
  "price_rule":
  {
    "title":"sad",
    "target_type":"line_item",
    "target_selection":"entitled",
    "allocation_method":"across",
    "value_type":"percentage",
    "value":"-3",
    "customer_selection":"all",
    "prerequisite_quantity_range":{"greater_than_or_equal_to":"2"},
    "entitled_product_ids":["2389482225165"],
    "starts_at":"2019-02-20T11:37:57.000Z"
  }
}

Ответ:

{
  "errors":
    {
      "entitled_product_ids":"expected Hash to be a Array"
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...