Curl

如何在curl中嵌入@參數

  • January 22, 2018

在 curl POST 命令中嵌入電子郵件字元串的正確方法是什麼?不會@糊塗嗎?

curl -d "name=Ivan&email=idf@xxx.com&password=secret" -H "Content-Type: application/x-www-form-url-encoded" -X POST http://localhost:5000/api/auth/register

僅當@它是指定為 的參數的第一個字元時才特殊-d--data-raw如果您想避免有關@字元的任何歧義,請使用。

引用自:https://serverfault.com/questions/893580