次の方法で共有


URL を除外する

傍受から URL を除外するには、その前に (感嘆符) を ! 付けます。

{
  "urlsToWatch": [
    "https://graph.microsoft.com/v1.0/*",
    "https://graph.microsoft.com/beta/*",
    "https://graph.microsoft.us/v1.0/*",
    "https://graph.microsoft.us/beta/*",
    "https://dod-graph.microsoft.us/v1.0/*",
    "https://dod-graph.microsoft.us/beta/*",
    "https://microsoftgraph.chinacloudapi.cn/v1.0/*",
    "https://microsoftgraph.chinacloudapi.cn/beta/*",
    "!https://*.sharepoint.*/*_api/web/GetClientSideComponents",
    "https://*.sharepoint.*/*_api/*",
    "https://*.sharepoint.*/*_vti_bin/*",
    "https://*.sharepoint-df.*/*_api/*",
    "https://*.sharepoint-df.*/*_vti_bin/*"
  ]
}

上記の例では、プロキシは に対して行われたすべての要求を無視します /_api/web/GetClientSideComponents

URL を除外する場合、プロキシは、構成で定義されている順序で一致する URL を検索します。

特定の URL を除外する場合は、グローバル URL が一致する前に、最初に定義する必要があります。