fork download
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. CURLOPT_URL => 'https://u...content-available-to-author-only...y.io/create_order_super_multi',
  6. CURLOPT_RETURNTRANSFER => true,
  7. CURLOPT_ENCODING => '',
  8. CURLOPT_MAXREDIRS => 10,
  9. CURLOPT_TIMEOUT => 0,
  10. CURLOPT_FOLLOWLOCATION => true,
  11. CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  12. CURLOPT_CUSTOMREQUEST => 'POST',
  13. CURLOPT_POSTFIELDS =>'{ "jsonrpc": "2.0",
  14. "params": { "order_list":[
  15. {
  16. "customer_address": "بيت ساحور شارع ymca",
  17. "note": "",
  18. "customer_mobile": "0562610055",
  19. "customer_name": "Vera Emil Ar",
  20. "address_tag":"مدينة بيت لحم-بيت ساحور",
  21. "cost":"319",
  22. "assign_to_business":"0525871193",
  23. "reference_id":"GH63088",
  24. "product_note":"ملابس وأحذية"
  25. } ],
  26. "login": "0525871193", "password": "12345678", "db": "unitedexp" }}',
  27. CURLOPT_HTTPHEADER => array(
  28. 'Content-Type: application/json',
  29. 'Cookie: session_id=b9837f50025817388d4840f9bbf77586b15cd872'
  30. ),
  31. ));
  32.  
  33. $response = curl_exec($curl);
  34.  
  35. curl_close($curl);
  36. echo $response;
  37.  
Success #stdin #stdout 0.03s 25964KB
stdin
Standard input is empty
stdout
Standard output is empty