google-indexing-script/README.md

194 lines
5.6 KiB
Markdown
Raw Normal View History

2024-01-24 12:13:56 +03:00
# Google Indexing Script
Use this script to get your entire site indexed on Google in less than 48 hours. No tricks, no hacks, just a simple script and a Google API.
You can read more about the motivation behind it and how it works in this blog post https://seogets.com/blog/google-indexing-script
2024-01-24 12:13:56 +03:00
> [!IMPORTANT]
>
2024-03-18 16:40:14 +03:00
> 1. Indexing != Ranking. This will not help your page rank on Google, it'll just let Google know about the existence of your pages.
> 2. This script uses [Google Indexing API](https://developers.google.com/search/apis/indexing-api/v3/quickstart). We do not recommend using this script on spam/low-quality content.
2024-01-24 12:13:56 +03:00
## Requirements
- Install [Node.js](https://nodejs.org/en/download)
- An account on [Google Search Console](https://search.google.com/search-console/about) with the verified sites you want to index
- An account on [Google Cloud](https://console.cloud.google.com/)
## Preparation
2024-03-02 19:35:14 +03:00
1. Follow this [guide](https://developers.google.com/search/apis/indexing-api/v3/prereqs) from Google. By the end of it, you should have a project on Google Cloud with the Indexing API enabled, a service account with the `Owner` permission on your sites.
2024-03-18 16:02:23 +03:00
2. Make sure you enable both [`Google Search Console API`](https://console.cloud.google.com/apis/api/searchconsole.googleapis.com) and [`Web Search Indexing API`](https://console.cloud.google.com/apis/api/indexing.googleapis.com) on your [Google Project ➤ API Services ➤ Enabled API & Services](https://console.cloud.google.com/apis/dashboard).
2024-03-02 19:35:14 +03:00
3. [Download the JSON](https://github.com/goenning/google-indexing-script/issues/2) file with the credentials of your service account and save it in the same folder as the script. The file should be named `service_account.json`
## Installation
### Using CLI
Install the cli globally on your machine.
```bash
npm i -g google-indexing-script
```
### Using the repository
2024-03-02 19:35:14 +03:00
Clone the repository to your machine.
2024-03-02 19:35:14 +03:00
```bash
git clone https://github.com/goenning/google-indexing-script.git
cd google-indexing-script
2024-03-02 19:35:14 +03:00
```
Install and build the project.
2024-03-02 19:35:14 +03:00
```bash
npm install
npm run build
npm i -g .
2024-03-02 19:35:14 +03:00
```
> [!NOTE]
> Ensure you are using an up-to-date Node.js version, with a preference for v20 or later. Check your current version with `node -v`.
2024-03-04 18:11:32 +03:00
## Usage
<details open>
<summary>With <code>service_account.json</code> <i>(recommended)</i></summary>
2024-03-02 19:35:14 +03:00
Create a `.gis` directory in your home folder and move the `service_account.json` file there.
2024-03-02 19:35:14 +03:00
```bash
mkdir ~/.gis
mv service_account.json ~/.gis
2024-03-02 19:35:14 +03:00
```
Run the script with the domain or url you want to index.
```bash
gis <domain or url>
2024-03-19 12:15:08 +03:00
# example
2024-03-02 19:35:14 +03:00
gis seogets.com
```
2024-03-04 18:11:32 +03:00
Here are some other ways to run the script:
2024-03-02 19:35:14 +03:00
2024-03-05 02:29:36 +03:00
```bash
# custom path to service_account.json
gis seogets.com --path /path/to/service_account.json
# long version command
google-indexing-script seogets.com
# cloned repository
npm run index seogets.com
```
</details>
2024-03-02 19:35:14 +03:00
<details>
<summary>With environment variables</summary>
2024-03-02 19:35:14 +03:00
Open `service_account.json` and copy the `client_email` and `private_key` values.
2024-03-02 19:35:14 +03:00
Run the script with the domain or url you want to index.
2024-03-02 19:35:14 +03:00
```bash
GIS_CLIENT_EMAIL=your-client-email GIS_PRIVATE_KEY=your-private-key gis seogets.com
2024-03-02 19:35:14 +03:00
```
</details>
2024-03-02 19:35:14 +03:00
<details>
<summary>With arguments <i>(not recommended)</i></summary>
2024-03-02 19:35:14 +03:00
Open `service_account.json` and copy the `client_email` and `private_key` values.
2024-03-02 19:35:14 +03:00
Once you have the values, run the script with the domain or url you want to index, the client email and the private key.
2024-03-02 19:35:14 +03:00
```bash
gis seogets.com --client-email your-client-email --private-key your-private-key
2024-03-02 19:35:14 +03:00
```
</details>
2024-01-24 12:13:56 +03:00
2024-03-18 16:47:21 +03:00
<details>
<summary>As a npm module</summary>
2024-03-18 15:31:24 +03:00
2024-03-18 16:47:21 +03:00
You can also use the script as a [npm module](https://www.npmjs.com/package/google-indexing-script) in your own project.
2024-03-18 15:31:24 +03:00
```bash
npm i google-indexing-script
```
```javascript
import { index } from "google-indexing-script";
import serviceAccount from "./service_account.json";
2024-03-18 15:31:24 +03:00
index("seogets.com", {
2024-03-18 15:31:24 +03:00
client_email: serviceAccount.client_email,
private_key: serviceAccount.private_key,
2024-03-18 15:31:24 +03:00
})
.then(console.log)
.catch(console.error);
2024-03-18 15:31:24 +03:00
```
2024-06-29 15:09:27 +03:00
Read the [API documentation](https://jsdocs.io/package/google-indexing-script) for more details.
2024-03-18 16:47:21 +03:00
</details>
2024-01-24 12:13:56 +03:00
Here's an example of what you should expect:
![](./output.png)
> [!IMPORTANT]
>
> - Your site must have 1 or more sitemaps submitted to Google Search Console. Otherwise, the script will not be able to find the pages to index.
> - You can run the script as many times as you want. It will only index the pages that are not already indexed.
> - Sites with a large number of pages might take a while to index, be patient.
2024-01-24 12:13:56 +03:00
## Quota
Depending on your account several quotas are configured for the API (see [docs](https://developers.google.com/search/apis/indexing-api/v3/quota-pricing#quota)). By default the script exits as soon as the rate limit is exceeded. You can configure a retry mechanism for the read requests that apply on a per minute time frame.
<details>
<summary>With environment variables</summary>
```bash
export GIS_QUOTA_RPM_RETRY=true
```
</details>
<details>
<summary>As a npm module</summary>
```javascript
import { index } from 'google-indexing-script'
import serviceAccount from './service_account.json'
index('seogets.com', {
client_email: serviceAccount.client_email,
private_key: serviceAccount.private_key
quota: {
rpmRetry: true
}
})
.then(console.log)
.catch(console.error)
```
</details>
2024-03-29 08:56:36 +03:00
## 🔀 Alternative
If you prefer a hands-free, and less technical solution, you can use a SaaS platform like [TagParrot](https://tagparrot.com/?via=goenning).
2024-01-24 12:13:56 +03:00
## 📄 License
MIT License
2024-01-24 17:12:43 +03:00
## 💖 Sponsor
This project is sponsored by [SEO Gets](https://seogets.com)
![](https://seogets.com/og.png)