WooCommerce API : 온라인상의 메타데이터로 주문생성 WooCommerce: https://github.com/kloon/WooCommerce-REST-API-Client-Library 에서 이 API를 사용하여 주문을 작성하고 있습니다. 주문을 추가할 때: $orderData = array( "order" => array( "line_items" => array( array( "product_id" => 1, "quantity" => 1 ) ) ) ); $client->orders->create($orderData); 모든 것이 잘 작동하고 주문은 WooCommerce에서 작성됩니다. 하지만 변동에 대한 메타데이터로 제품 변동을 추가하고자 할 때는 어떻게 해야 합니까? 저는 다음과 같은 몇 ..