Index Nowで複数のURLを検査する方法のメモ書きです。
1.こちらのサイトの「Generate API Key」からAPIキーを生成する
https://www.bing.com/indexnow/getstarted
2.ワードプレスのpublic_html直下に配置する
3.POST MANを使って、以下のようにPOSTする
POST:https://api.indexnow.org/indexnow
Bodyのrawに以下を記述
{
"host": "example.com",
"key": "生成したAPIキー",
"keyLocation": "https://example.com/生成したAPIキー.txt",
"urlList": [
"https://example.com/post1/",
"https://example.com/post2/",
"https://example.com/post3/",
]
}
実際にやってみましたが、Googleでインデックスが早くなった感じはしないです。