how to use pucurl to post code example
Example 1: curl post
curl --data "param1=value1¶m2=value2" https://example.com/post
Example 2: curl pass data in request
curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data
curl --data "param1=value1¶m2=value2" https://example.com/post
curl -d "param1=value1¶m2=value2" -X POST http://localhost:3000/data