इस टूल में कोई समस्या है?
«कर्ल कमांड बिल्डर ऑनलाइन» के बारे में
यह टूल एक फ़ॉर्म से दृश्यात्मक रूप से curl कमांड बनाता है।
curl HTTP अनुरोधों के लिए सार्वभौमिक कमांड-लाइन टूल है।
बिल्डर उद्धरण मुद्दों और जटिल हेडर एस्केपिंग से बचने में मदद करता है।
इस टूल का उपयोग कैसे करें
How to assemble a curl command from URL + method + headers + body
URL and method
"URL" is the full target (with scheme — `https://api.example.com/v1/users`). "Method" is the HTTP verb (GET, POST, PUT, PATCH, DELETE, …). Methods other than GET are emitted with `-X METHOD`.
Headers (one per line)
"Headers (Key: Value per line)" accepts standard `Key: Value` pairs, one per line. Each non-empty trimmed line becomes `-H 'Key: Value'`. Lines without a colon are silently skipped.
Body
"Body" (optional) is the raw request body — JSON, form-urlencoded, or anything you'd POST. Non-empty body becomes `--data '…'` with the body single-quoted (literal single quotes in the body aren't auto-escaped — watch out).
Press Run
Result is a single `command` field — `curl 'URL' [-X METHOD] [-H 'K: V']... [--data '…']`. Paste into a terminal that supports POSIX single-quoting (bash, zsh). For PowerShell or cmd.exe you'll need to re-quote.