fetch_url
Submit a specific URL to Bing for immediate crawling and indexing, ensuring timely updates to search results. Requires site URL and target URL for processing.
Instructions
Request Bing to fetch a specific URL immediately.
Args: site_url: The URL of the site url: The URL to fetch
Raises: BingWebmasterError: If URL cannot be fetched
Input Schema
Name | Required | Description | Default |
---|---|---|---|
self | Yes | ||
site_url | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"url"
],
"title": "fetch_urlArguments",
"type": "object"
}