Special characters like @ and & in cURL POST data

前端 未结 6 1246
旧时难觅i
旧时难觅i 2020-12-07 18:52

How do I include special characters like @ and & in the cURL POST data? I\'m trying to pass a name and password like:

curl -d name=john passwd=@31&3*         


        
6条回答
  •  独厮守ぢ
    2020-12-07 19:15

    Double quote (" ") the entire URL .It works.

    curl "http://www.mysite.com?name=john&passwd=@31&3*J"
    

提交回复
热议问题