I've just seen snippet of code on developer.twitter.com
'curl --request POST \
--url https://api.twitter.com/1.1/tweets/search/30day/<ENV>.json \
--header 'authorization: Bearer <BEARER_TOKEN>' \
--header 'content-type: application/json' \
--data '{
"query":"from:TwitterDev lang:en",
"maxResults": "100",
"fromDate":"<YYYYMMDDHHmm>",
"toDate":"<YYYYMMDDHHmm>"
}'
Using cmd command line or Windows power shell i receive error because of multiline format of the code. However everything is ok for string without line breaks.
My question is - Where i can run this snippet of code without errors?