キーフレーズを使わないクエリ

日本語翻訳に関する免責事項

このページの翻訳はAIによって自動的に行われました。可能な限り正確な翻訳を心掛けていますが、原文と異なる表現や解釈が含まれる場合があります。正確で公式な情報については、必ず英語の原文をご参照ください。

送信できる最も基本的な要求は、キー フレーズのないクエリSitecore Searchです。必要なのは、コンテンツを要求するための 必須 オブジェクトだけです。

データ・モデルについては、Search and Recommendation APIリファレンスを参照してください。

次のコード サンプルは、単純な要求を作成する方法を示しています。

{
    "widget": {
        "items": [
            {
                "rfk_id": "rfkid_7",
                "entity": "content",
                "search": {
                    "content": {}
                }
            }
        ]
    },
    "context": {
        "locale": {
            "country": "us",
            "language": "en"
        }
    }
}

クエリに対する応答は次のとおりです。

{
    "widgets": [
        {
            "rfk_id": "rfkid_7",
            "entity": "content",
            "content": [
                {
                    "description": "July 22, 2021As we should all know by now...",
                    "id": "https___www_sitecore_com_company_news-events_news_2021_07_how-managers-can-support-employees-with-their-mental-health",
                    "source_id": "388218",
                    "subtitle": null,
                    "title": "B2B Marketing: How managers can support employees with their mental health",
                    "type": "news",
                    "url": "https://www.sitecore.com/company/news-events/news/2021/07/how-managers-can-support-employees-with-their-mental-health"
                },
                {
                    "description": "June 10, 2022Following two tumultuous years, consumers are returning to their pre-pandemic ways...",
                    "id": "https___www_sitecore_com_company_news-events_news_2022_06_brand-loyalty-declines-as-consumers-push-for-transparency",
                    "source_id": "388218",
                    "subtitle": null,
                    "title": "Street Fight Magazine: Report: Brand Loyalty Declines as Consumers Push for Transparency",
                    "type": "news",
                    "url": "https://www.sitecore.com/company/news-events/news/2022/06/brand-loyalty-declines-as-consumers-push-for-transparency"
                }
                ...
            ],
            "total_item": 5858,
            "limit": 10,
            "offset": 0
        }
    ],
    "dt": 21,
    "ts": 1669435830588
}
この記事を改善するための提案がある場合は、 お知らせください!