401 Unauthorized
when attempting to retrieve an object #929
Labels
No labels
approved, awaiting change
bug
configuration
documentation
duplicate
enhancement
extremely low priority
feature request
Fix it yourself
help wanted
invalid
mastodon_api
needs change/feedback
needs docs
needs tests
not a bug
planned
pleroma_api
privacy
question
static_fe
triage
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma#929
Loading…
Add table
Reference in a new issue
No description provided.
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?
Some Akkoma servers return
401 Unauthorized
status in response to a GET request. What does it mean?Other servers often return this status when request's HTTP signature is not valid. However, I suspect that Akkoma uses it to indicate a server-level block. Could you confirm? And if this is true, would you consider changing the status to
403 Forbidden
, which is more common?to401 Unauthorized
when attemting to retrieve an object401 Unauthorized
when attempting to retrieve an objectIt doesn’t intentionally return
401
for specifically blocked domains, but anything which results in the signature not being verified ((e.g. not fetching the remote pubkey due to MRF blocks) when one is required eventually runs into401
.Impossible to handle until #874 is merged; afterwards it should be quite simple to special case MRF rejects on the key id analogously to
:gone
handling