debug signed fetch

This commit is contained in:
Felix Ableitner 2024-03-07 12:47:15 +01:00
parent 147f144769
commit 294c77c01b
2 changed files with 3 additions and 0 deletions

View file

@ -106,6 +106,7 @@ async fn fetch_object_http_with_accept<T: Clone, Kind: DeserializeOwned>(
data.config.http_signature_compat,
)
.await?;
dbg!(req.headers());
config.client.execute(req).await?
} else {
req.send().await?
@ -119,6 +120,7 @@ async fn fetch_object_http_with_accept<T: Clone, Kind: DeserializeOwned>(
let content_type = res.headers().get("Content-Type").cloned();
let text = res.bytes_limited().await?;
let object_id = extract_id(&text).ok();
dbg!(String::from_utf8(text.to_vec()));
match serde_json::from_slice(&text) {
Ok(object) => Ok(FetchObjectResponse {

View file

@ -106,6 +106,7 @@ pub(crate) async fn sign_request(
Sha256::new(),
activity,
move |signing_string| {
dbg!(&signing_string);
let mut signer = Signer::new(MessageDigest::sha256(), &private_key)?;
signer.update(signing_string.as_bytes())?;