> For the complete documentation index, see [llms.txt](https://seekspeed.gitbook.io/seekspeed-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://seekspeed.gitbook.io/seekspeed-docs/security/share-tokens.md).

# Share Tokens

Reports can be shared publicly without exposing the rest of the workspace. The mechanism is a per-report `share_token` plus a strict RLS policy that requires the token in the `x-share-token` request header.

## RLS policy

```sql
CREATE POLICY "anon reads shared reports"
  ON public.reports FOR SELECT TO anon
  USING (
    share_token IS NOT NULL
    AND share_token = current_setting('request.headers.x-share-token', true)::text
  );
```

No header → no row. Wrong header → no row. There is no `share_token IS NOT NULL` shortcut that returns the row to anonymous traffic without the matching header, which is the bug class the policy is designed to prevent.

## Client read

The public report page on `/r/$token` calls a server function that forwards the token via header:

```ts
const { data } = await supabase
  .from("reports")
  .select("*")
  .eq("share_token", token)
  .maybeSingle()
  .headers({ "x-share-token": token });
```

## Revoking

Setting `share_token = NULL` on a row immediately invalidates the public URL. There is no separate token-revocation table.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://seekspeed.gitbook.io/seekspeed-docs/security/share-tokens.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
