尝试将 cURL 命令导入 POSTMAN
Trying to import cURL command to POSTMAN
我正在尝试在 POSTMAN 上导入 cURL 命令
curl -X POST https://www.check-plagiarism.com/apis \ -d "key=YOUR_KEY"
导入后,我收到此错误 Error while importing Curl: Only the URL can be provided without an option preceding it.All other inputs must be specified via options.
有谁知道如何让它工作吗?谢谢
我猜你的 curl 中存在复制粘贴错误,只需删除 \
:
curl -X POST https://www.check-plagiarism.com/apis -d "key=YOUR_KEY"
我正在尝试在 POSTMAN 上导入 cURL 命令
curl -X POST https://www.check-plagiarism.com/apis \ -d "key=YOUR_KEY"
导入后,我收到此错误 Error while importing Curl: Only the URL can be provided without an option preceding it.All other inputs must be specified via options.
有谁知道如何让它工作吗?谢谢
我猜你的 curl 中存在复制粘贴错误,只需删除 \
:
curl -X POST https://www.check-plagiarism.com/apis -d "key=YOUR_KEY"