!!! note This post is a thought. It's a short note that I make about someone else's content online. Learn more about the process here

Here's my thought on 💭 How do I post form data using Curl?


How to pass form data with curl, give it the d.


curl -X POST https://reqbin.com/echo/post/form
   -H "Content-Type: application/x-www-form-urlencoded" 
   -d "param1=value1&param2=value2" 

This post was a thought by Waylon Walker see all my thoughts at https://waylonwalker.com/thoughts