收藏
回答

小商店标准交易组件添加商品接口,商品名称无法正常解析,如何正确调用?

curl post提交json数据

感觉问题可能出现在提交数据这,接口正常访问了 也在小商店添加商品了,中文无法显示出正常参数来

public function http_post_data_json($url, $data=[], $timeout = 5)
{
   $jsonStr = json_encode($data);
   $ch      = curl_init();
   curl_setopt($ch, CURLOPT_POST, 1);
   curl_setopt($ch, CURLOPT_URL, $url);
   curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
   curl_setopt($ch, CURLOPT_HTTPHEADER, array(
         'Content-Type: application/json',
      )
   );
   $response = curl_exec($ch);
   $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
   curl_close($ch);

   return $response;
}


最后一次编辑于  2021-06-30
回答关注问题邀请回答
收藏
登录 后发表内容