关于curl添加请求头

开始搜索了一下curl怎么添加请求头,都是抄来抄去,用-H添加,但是具体解析的时候会将-H的内容误以为是链接,找不到对应的host,我的版本是7.42.0,后来Google了一下,还是Google靠谱,在Stack Overflow上面看到用--header "data: data" 添加就可以正常添加了,例子:curl --header "Accept-Language: zh-cn" -v www.csdn.com

参考文章:https://stackoverflow.com/questions/356705/how-to-send-a-header-using-a-http-request-through-a-curl-call

你可能感兴趣的:(日常,curl,header)