标签: c++ c http curl libcurl
我想发送带有签名标头的http消息。有点像这样:
POST / HTTP/1.1 Host: server.com Content-Type: text/xml; charset=utf-8 Content-Length: 8 Signature: 42A424FB0C4938BBF08259514C64ABFC1E74C61F any data
签名头包含40个字符的十六进制表示(case 不敏感的HMAC-SHA1 (Key, Text)
HMAC-SHA1 (Key, Text)
答案 0 :(得分:1)
不,它没有专门支持该标头,但它支持您使用CURLOPT_HTTPHEADER在请求中插入该标头,如httpcustomheader示例所示