Rust Google Indexing API

Crates.io

This is a Rust library for interfacing with the Google Indexing API. It allows you to notify Google about pages on your web app for indexing in search results.

Features

Installation

To use the google-indexing-api in your Rust project, add it as a dependency in your Cargo.toml:

toml [dependencies] google-indexing-api = "0.1"

Usage

```rust async fn main() { use googleindexingapi::{GoogleIndexingApi, UrlNotificationsType};

let api = GoogleIndexingApi::url_notifications();

// Notify Google about a URL update let response = api.publish("YOURGOOGLETOKEN", "https://yourwebsite.com/page1", UrlNotificationsType::UPDATED).await; // Notify Google about a URL delete let response = api.publish("YOURGOOGLETOKEN", "https://yourwebsite.com/page1", UrlNotificationsType::DELETED).await;

// Retrieve metadata about a URL let metadata = api.getmetadata("YOURGOOGLE_TOKEN", "https://yourwebsite.com/page1").await;

// Batch notify Google about multiple URL updates let urls = vec!["https://yourwebsite.com/page1", "https://yourwebsite.com/page2"]; let batchresponse = api.batch("YOURGOOGLE_TOKEN", urls, UrlNotificationsType::UPDATED).await; }

```

Error Handling

The library provides structured error handling through the GoogleApiError enum. You can match against it to handle specific error scenarios in your application.