Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions public/.well-known/api-catalog
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Serve api-catalog with application/linkset+json

RFC 9727 requires /.well-known/api-catalog to support the application/linkset+json media type, but this commit adds an extensionless static file with no accompanying header configuration in the repo (I checked for common _headers/hosting header config files and found none). On typical static hosting, this path is served as a generic type (often application/octet-stream or text/plain), which can break clients that request Accept: application/linkset+json for catalog discovery.

Useful? React with 👍 / 👎.

"linkset": [
{
"anchor": "https://AsyncTalk.com/.well-known/api-catalog",
"item": [
{
"href": "https://AsyncTalk.com/rss.xml",
"type": "application/rss+xml"
}
],
"service-doc": [
{
"href": "https://AsyncTalk.com/posts",
"type": "text/html"
}
]
}
]
}
Loading