英語で読む

次の方法で共有


Microsoft Search API を使用してブックマークを検索する

Microsoft Graph の Microsoft Search API を使用して、ブックマークを検索できます。 管理者は、Microsoft 365 管理センターまたはブックマークの作成 API を使用してブックマークを作成できます。

注意事項

検索 API スキーマがベータ版で変更されました。 検索要求と応答の一部のプロパティの名前が変更または削除されました。 詳細については、「 スキーマ変更の非推奨の警告」を参照してください。 このトピックの例では、最新のスキーマを示します。

ブックマークを作成した後、それらを検索するには、 searchRequestentityTypes プロパティで、値として を指定 bookmark します。

例: ブックマークをSearchする

要求

POST https://graph.microsoft.com/v1.0/search/query
Content-Type: application/json

{
  "requests": [
    {
      "entityTypes": [
        "bookmark"
      ],
      "query": {
        "queryString":"Yammer"
      }
    }
  ]
}

応答

HTTP/1.1 200 OK
Content-type: application/json

{
  "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#search",
  "value": [
  {
   "@odata.type": "#microsoft.graph.searchResponse",
   "hitsContainers": [
    {
     "@odata.type": "#microsoft.graph.searchHitsContainer",
     "hits": [
      {
       "@odata.type": "#microsoft.graph.searchHit",
       "hitId": "a9f59c69-f4a1-42ac-820e-0f35114300f8",
       "rank": 1,
       "resource": {
          "@odata.type": "#microsoft.graph.search.bookmark",
          "id": "a9f59c69-f4a1-42ac-820e-0f35114300f8",
          "displayName": "Yammer",
          "description": "Yammer is a collaboration tool that helps you connect and engage across the company. Start conversations, share knowledge, and build communities.",
          "webUrl": "https://www.yammer.com/office365",
        }
       }
      }
     ],
     "total": 1,
     "moreResultsAvailable": false
    }
   ]
  }
 ]
}

既知の問題

  • ブックマーク検索では、並べ替え、集計、改ページ処理はサポートされていません。
  • 回答のないエンティティ型 ( driveItemlist など) との組み合わせ検索はサポートされていません。 他の回答エンティティ型 のブックマークqna頭字語 との組み合わせ検索のみがサポートされています。

次の手順