Add X-Title and referer headers on exchange to tetrate (#4250)

Signed-off-by: John Landa <jonathanlanda@gmail.com>
This commit is contained in:
John Landa
2025-08-22 03:26:34 +02:00
committed by GitHub
parent c2b71b3254
commit 1bb2c54ae1
@@ -108,6 +108,8 @@ impl PkceAuthFlow {
let response = client
.post(TETRATE_TOKEN_URL)
.header("X-Title", "goose")
.header("Referer", "https://github.com/block/goose")
.json(&request_body)
.send()
.await?;