Enhancement: Bluesky re-authenticates on every post #97
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Audit Finding H-7
Severity: Medium (performance)
Issue:
BlueskyService calls the
createSessionendpoint on everypublish()call, generating a new JWT token each time. This adds ~500ms latency per post and may trigger rate limits.Fix: Cache the session token in the credentials JSON with an expiry timestamp, and only re-authenticate when expired.
Files:
BlueskyService.phpLabel:
priority: medium,type: enhancementBranch created:
feature/97-enhancement-bluesky-re-authenticates-on-