1
0
Fork 0
forked from alemi/upub

fix: include method in request target

This commit is contained in:
əlemi 2024-04-13 05:36:29 +02:00
parent 437859008c
commit 652af15771
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -133,7 +133,11 @@ impl HttpSignature {
for header in self.headers.iter() {
match header.as_str() {
"(request-target)" => out.push(
format!("(request-target): {}", parts.uri.path_and_query().map(|x| x.as_str()).unwrap_or("/"))
format!(
"(request-target): {} {}",
parts.method.to_string().to_lowercase(),
parts.uri.path_and_query().map(|x| x.as_str()).unwrap_or("/")
)
),
// TODO other pseudo-headers,
_ => out.push(format!("{}: {}",