# 隐私集成 (/zh/integrations/privacy/overview)

<!-- agent-signals: reading_time_min: 1 · est_tokens: 571 · updated: 2026-07-30 -->
Related: [Osano](/zh/integrations/privacy/osano.md), [Transcend](/zh/integrations/privacy/transcend.md), [Front](/zh/integrations/support/front.md)

<Card title="Osano" href="/zh/integrations/privacy/osano" icon="<svg width=&#x22;32&#x22; height=&#x22;32&#x22; className=&#x22;h-6 w-6&#x22; viewBox=&#x22;0 0 256 256&#x22; fill=&#x22;none&#x22; xmlns=&#x22;http://www.w3.org/2000/svg&#x22;><path fillRule=&#x22;evenodd&#x22; clipRule=&#x22;evenodd&#x22; d=&#x22;M128 256C198.692 256 256 198.692 256 128C256 57.3076 198.692 0 128 0C57.3076 0 0 57.3076 0 128C0 198.692 57.3076 256 128 256ZM128 192C163.346 192 192 163.346 192 128C192 92.6538 163.346 64 128 64C92.6538 64 64 92.6538 64 128C64 163.346 92.6538 192 128 192Z&#x22; fill=&#x22;#7764FA&#x22;/></svg>">
  使用 [Osano](https://www.osano.com/) 管理 Cookie 同意。
</Card>

<Card title="Transcend" href="/zh/integrations/privacy/transcend" icon="<svg xmlns=&#x22;http://www.w3.org/2000/svg&#x22; viewBox=&#x22;0 0 24 24&#x22; fill=&#x22;none&#x22;><path d=&#x22;M18.7088 3.49534C16.8165 2.55382 14.5009 2 12 2C9.4991 2 7.1835 2.55382 5.29116 3.49534C4.36318 3.95706 3.89919 4.18792 3.4496 4.91378C3 5.63965 3 6.34248 3 7.74814V11.2371C3 16.9205 7.54236 20.0804 10.173 21.4338C10.9067 21.8113 11.2735 22 12 22C12.7265 22 13.0933 21.8113 13.8269 21.4338C16.4576 20.0804 21 16.9205 21 11.2371L21 7.74814C21 6.34249 21 5.63966 20.5504 4.91378C20.1008 4.18791 19.6368 3.95706 18.7088 3.49534Z&#x22; stroke=&#x22;currentColor&#x22; stroke-linecap=&#x22;round&#x22; stroke-linejoin=&#x22;round&#x22; stroke-width=&#x22;1.5&#x22;/><path d=&#x22;M9 11.5C9 11.5 10.4079 11.7519 11 13.5C11 13.5 12.5 10.5 15 9.5&#x22; stroke=&#x22;currentColor&#x22; stroke-linecap=&#x22;round&#x22; stroke-linejoin=&#x22;round&#x22; stroke-width=&#x22;1.5&#x22;/></svg>">
  使用 [Transcend](https://transcend.io/) 管理 Cookie 同意。
</Card>

<div id="cookie-consent-and-disabling-telemetry">
  ## Cookie 同意与禁用遥测/使用数据 [#cookie-同意与禁用遥测使用数据]
</div>

如需检查用户是否已为符合 GDPR 要求而同意使用 Cookie，你可以在 `cookies` 下指定一个本地存储中的 key 和值：

```json
  "integrations": {
    "cookies": {
      "key": "LOCAL STORAGE KEY",
      "value": "LOCAL STORAGE VALUE"
    }
  }
```

如果你设置了这些值，你的站点会检查本地存储中指定的 key 和值，以确定用户是否已同意使用 Cookie。若用户未同意，你的站点将为该用户禁用遥测/使用数据。

如果你希望为所有用户禁用遥测/使用数据，请在你的 `docs.json` 文件中添加以下内容：

```json
  "integrations": {
    "telemetry": {
      "enabled": false
    }
  }
```

<Note>
  如果禁用遥测/使用数据，即使在控制台中开启了反馈，也无法在文档页面收集反馈。
</Note>
