If you’re on Windows, escaping quotes in curl make request is hell. Use double quotes outside, single inside:
`curl -X POST "https://example.com" -H "Thing: stuff" -d '{"data":"lol"}'`
Or use PowerShell + `curl.exe` (but that’s a whole other rant).
`curl -X POST "https://example.com" -H "Thing: stuff" -d '{"data":"lol"}'`
Or use PowerShell + `curl.exe` (but that’s a whole other rant).
