如何在 curl 中嵌入 @ 参数

如何在 curl 中嵌入 @ 参数

在 curl POST 命令中嵌入电子邮件字符串的正确方法是什么? 不会@造成混淆吗?

curl -d "name=Ivan&[email protected]&password=secret" -H "Content-Type: application/x-www-form-url-encoded" -X POST http://localhost:5000/api/auth/register

答案1

@仅当它是指定为 参数的第一个字符时, 才是特殊的。-d如果--data-raw您想避免有关@字符的任何歧义,请使用 。

相关内容