Skip to content

Piekario/google-indexing-api-go-bulk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents

Pre requirements

Requires Go - https://go.dev/dl/

This script will help you index your website's pages in bulk, without having to manually request each URL for submission in the Search Console interface.

First off you will need to set up access to the Indexing API in Google Cloud Platform - follow the instructions below.

https://developers.google.com/search/apis/indexing-api/v3/prereqs

Once you have access to Indexing API you'll be able to download a public/private key pair JSON file, this contains all of your credentials.

Add the URLs to text file separated by new line (\n).

Verify site ownership in Search Console to submit URLs for indexing

In this step, you'll verify that you have control over your web property.

To verify ownership of your site you'll need to add your service account email address (see service_account.json - client_email) and add it as an owner ('delegated') of the web property in Search Console.

You can find your service account email address in two places:

  • The client_email field in the JSON private key that you downloaded when you created your project.
  • The Service account ID column of the Service Accounts view in the Developer Console.
  • The email address has a format similar to the following:

For example, "my-service-account@test-project-42.google.com.iam.gserviceaccount.com".

Then...

  1. Go to Google Webmaster Central
  2. Click your verified property
  3. Scroll down and click 'Add an owner'.
  4. Add your service account email address as an owner to the property.

Usage

Usage of ./google-indexing-api-go:
-credentials string
    path to file with credentials downloaded from https://console.developers.google.com/iam-admin/serviceaccounts (default "./service_account.json")
-urls string
    path to file with links to pages (default "./urls")