正在寻找一种简单的方法来请求 Google Search Console 将您的网站页面编入索引吗?
以下是如何处理索引 https://must-know-resources-for-programmers.giessen.dev/ 的所有 764 个页面的请求。
- 本地项目和文件夹
- pnpm 初始化
- pnpm 添加 google-indexing-script
- 更新package.json脚本“seo”:“node index.js”
- 触摸index.js
- 将以下内容添加到index.js文件中
import { index } from "google-indexing-script";
import serviceAccount from "./service_account.json" assert { type: "json" };
index("<WEBSITE_URL_HERE>", {
client_email: serviceAccount.client_email,
private_key: serviceAccount.private_key,
quota: {
rpmRetry: true
}
})
.then(console.log)
.catch(console.error);
- 按照 https://github.com/goenning/google-indexing-script?tab=readme-ov-file#preparation 中的步骤操作
- 下载凭证 JSON https://github.com/goenning/google-indexing-script/issues/2
- 重命名下载的JSON并移动到index.js所在的文件夹
- 前往 Google 搜索控制台
- 选择要索引的网站
- 前往设置
- 用户和权限
- 添加用户
- 添加您在第 6 步准备工作中创建的 .iam.gserviceaccount.com 中的电子邮件
- 在权限中,选择所有者
- 现在您可以在终端中运行 pnpm seo,这应该会请求索引您网站站点地图中的所有页面
以上是正在寻找一种简单的方法来请求 Google Search Console 将您的网站页面编入索引吗?的详细内容。更多信息请关注PHP中文网其他相关文章!