SR 2.4.0 Stream Load 出现关键字异常问题

Stream Load 命令:
curl --location-trusted -u root:pwd -H “format: json” -H “strip_outer_array: true” -H “jsonpaths: [”$.tenant_id","$.id","$.code","$.t_order","$.createddate","$.line","$.t_type","$.t_desc","$.acl","$.whitelist","$.rd","$.qd","$.deleted","$.createdby","$.sdp_instorage_time","$.name","$.createdversion","$.status","$.po"]" -H “columns: tenant_id,id,code,t_order,createddate,line,t_type,t_desc,acl,whitelist,rd,qd,deleted,createdby,sdp_instorage_time,name,createdversion,status,po” -H “label:zt_product12345” -T zt_product.json -XPUT http://10.79.18.198:8030/api/p00104/zt_product/_stream_load;
执行报错:


请问stream load的时候针对关键字要如何处理,对关键字添加`` 或者‘’ 或者""都不行

-H $‘columns: whitelist’ 可以使用这种方式进行传参,关键字使用``包裹,参数写入到$’'中

换成你说的这种可以了 , 多谢
curl --location-trusted -u root:pwd
-H “format: json”
-H “strip_outer_array: true”
-H “jsonpaths: [”$.tenant_id","$.id","$.code","$.t_order","$.createddate","$.line","$.t_type","$.t_desc","$.acl","$.whitelist","$.rd","$.qd","$.deleted","$.createdby","$.sdp_instorage_time","$.name","$.createdversion","$.status","$.po"]"
-H $‘columns: tenant_id,id,code,t_order,createddate,line,t_type,t_desc,acl,whitelist,rd,qd,deleted,createdby,sdp_instorage_time,name,createdversion,status,po’ -H “label:zt_product612345”
-T zt_product.json -XPUT
http://10.79.18.198:8030/api/p00104/zt_product_01/_stream_load