Questions tagged [google-indexing-api]

Use the Indexing API to ask Google to crawl and index your URLs. Currently, the Indexing API can only be used to crawl job posting pages with job posting structured data.

The Indexing API allows you to submit a limited number of URLs to Google to be crawled. Currently, the Indexing API can only be used to crawl job posting pages with job posting structured data.

Documentation

45 questions
1
vote
1 answer

.NET Core 3.1 - HostingEnvironment does not contain a definition for MapPath

I am using .NET Core 3.1 and I am trying to connect to the Google's Indexing API by presenting a private key. I have looked at things like: Example of Google Indexing API Batch Request using .NET and…
noblerare
  • 10,277
  • 23
  • 78
  • 140
1
vote
2 answers

How to install Google Index API in PHP

I'm trying to implement the Google index API with PHP, but I have a blank page error 500. I believe that I've done all the prerequisite for the Indexing API as mentioned here:…
1
vote
2 answers

Google Indexing API: Permission denied. Failed to verify the URL ownership

I've looked through all of the other threads on this and unfortunately they still haven't resolved my issue, so I'm hoping you can help! I'm trying to use Google's Indexing API via Google App Script. So far I've: Followed the documentation…
1
vote
1 answer

Change text of Apply button in Google Job posting (Indexing api)

When I posted job on Google using their indexing api, it appears in Google jobs but the text on apply button is 'apply on xyz.domain.pqr' instead of my Company name. How to change this text of make it 'apply on xyx' where xyz is my Company name.
Asha
  • 67
  • 9
1
vote
1 answer

How to get an access token from Google without an api library?

I am working on an Elixir Phoenix web project where I want to interact with Google's Indexing API. Google uses OAuth2 to authenticate api requests and actually has a decent documentation on this. But it only explains the process using one of the…
1
vote
1 answer

How to authenticate google-indexing with a service account on a Drupal site

I'm trying to use the google indexing API on a Drupal site. I keep getting a 403 permission denied error. I've enabled the API, created a service account, verified the site ownership using a meta tag, set owner permission to the service account and…
1
vote
0 answers

Google Indexing API test environment?

I'm implementing the Google Indexing API for some job posts, and I have it working in "production" (sending url's that are preceded with my public domain i.e. "jobs.myproduction.com") but I can't figure out how to test it in any QA or integration…
Mike
  • 1,246
  • 3
  • 20
  • 34
1
vote
0 answers

Example of Google Indexing API Batch Request using .NET

Please can someone provide example code in C# that will allow me to submit a batch request to the Google Indexing API for the URL_UPDATED action? The code below shows what I currently use to perform a single URL_UPDATED action using a single HTTP…
1
vote
5 answers

Google Indexing API

I have a job portal website (Wordpress + PHP) and I want using Google Indexing API for my website. I don't have any experience on GoogleAPI so I just read their guidance. According to the guide, to use the Indexing API it has 3 steps: Complete the…
Daniel Stark
  • 57
  • 2
  • 11
0
votes
0 answers

Google Indexing API - Error Code 404 / PHP-Script

I'm trying to send a few updates zu the google indexing API for a Client. I already tried it with my own Website, no problems at all ... even though I created the Accounts, linked the GSC with the equired Owners, I keep receiving a 403 Status…
0
votes
1 answer

Google Indexing API rateLimitExceeded

I have a Spring Batch Process which submits something around 5M urls to Google Indexing API. In the past, the process was segmented e parallelized int two threads by an attribute, one for the small segments and one for the bigger. From some days ago…
Jaumzera
  • 2,305
  • 1
  • 30
  • 44
0
votes
1 answer

Google Indexing API Batch request python

I'm trying to prepare script to minimize the number of requests with batch method. In the example of my code, 5 URLs are requested, for this I spent 5 publish requests. How can I change the code to update 5 urls in one…
0
votes
0 answers

Multiple Url submission at a time in Google indexing api for blogspot

From some day I'm searching for Fast Indexing APi for my blogspot website, I have found a source code that helps to solve my issue but the problem arise here that I can submit one url at a time in the script. Please check the script code…
0
votes
1 answer

Google indexing api urlNotifications/metadata returns 404 error

I am trying to check if my website page have been indexed by google. For this reason I am using Indexing API. For this reason I intent to call urlNotifications/metadata (documentation) to recieve metadata. I am using php Google_api library for PHP.…
Klim Smith
  • 53
  • 1
  • 7
0
votes
1 answer

How to fix Google Indexing API inside loop problem?

I have a Google index API code that works. The code is following: from oauth2client.service_account import ServiceAccountCredentials import httplib2 SCOPES = ["https://www.googleapis.com/auth/indexing"] ENDPOINT =…