AddThis

Friday, 18 December 2020

How to pass multiple parameters in query string / url in CURL request

 curl -v -L 'http://localhost:8080/account-details/?from=2020-01-01&to=2020-12-15' -H 'Authorization: COM_SYSTEM Kdkereodndwepqpkdke3012ksmcqll=' -H 'Content-Type: application/json' -H 'Postman-Token: dsfdve3-cxdfgw-wqd-hrt2d-djkk4kt9jd' -H 'cache-control: no-cache' -H 'client_id: 1234'

No comments:

Post a Comment

Core functional interfaces in Java (Function, Predicate, Consumer, and Supplier)

  The four core functional interfaces in Java ( Function , Predicate , Consumer , and Supplier ) are the backbone of lambda expressions a...