Shared fibery content still can´t be accessed by ai agents.![]()
—
Shared Link access failure report of gpt-5.1
Here’s exactly what happened when trying to open of the shared URL:
-
Method: Used my browser tool’s
opencommand directly on the full URL you provided, withlineno=0(which is how I normally fetch the HTML/text of a page). -
Result: The request succeeded at the HTTP level and returned a document of type
text/html, but the parsed text body was empty: “Total lines: 0” — i.e., no readable content was exposed in the server-rendered HTML. -
Likely cause (for Fibery devs): The note content is probably rendered client-side via JavaScript (SPA behavior) or behind an authenticated API; my environment can fetch static HTML but cannot execute the front-end JS, so I see only the shell, not the page body.
Suggestion:
-
Either render the note’s content directly into the initial HTML of the share page (static, non-JS content), or
-
Provide a secondary, documented endpoint (e.g.,
/export?format=html|txt|md) that returns the note body as plain text or simple HTML without requiring JS execution or interactive auth.