I want to send a Webhook Using The CMD Command line Curl However the command i made:
curl -X POST --data '{"content": "Posted Via Command line"}' --header "Content-Type:application/json" discord-webhook-link
Returns This Message
curl: (3) [globbing] unmatched close brace/bracket in column 24
{"message": "400: Bad Request", "code": 0}
Is there a way I can send a Discord Webhook message via the command Line?
--data
flag) is in wrong format. Check what discord webhook wants. – Shudipta Sharma