chore(auth): also mention that atproto spec requiers typ be "JWT" for inter-service tokens

This commit is contained in:
nelind
2026-06-05 12:49:25 +02:00
parent 7c248be153
commit cd7e01100e
2 changed files with 2 additions and 0 deletions
Generated
+1
View File
@@ -7837,6 +7837,7 @@ dependencies = [
"sha2",
"sqlx",
"subtle",
"tempfile",
"testcontainers",
"testcontainers-modules",
"thiserror 2.0.18",
+1
View File
@@ -16,6 +16,7 @@ impl TokenType {
Self::Access => "at+jwt",
Self::Refresh => "refresh+jwt",
// RFC 7519 §5.1 recommends the uppercase "JWT".
// and for atproto inter-service auth its a requirement.
Self::Service => "JWT",
}
}