If you’re on Windows, watch out for quotes in post request from curl. CMD and PowerShell handle them differently.
I usually use double quotes for the JSON and escape the inner ones:
```
curl -X POST -H "Content-Type: application/json" -d "{\"key\":\"value\"}" https://example.com
```
Painful, but it works.
I usually use double quotes for the JSON and escape the inner ones:
```
curl -X POST -H "Content-Type: application/json" -d "{\"key\":\"value\"}" https://example.com
```
Painful, but it works.
