Error codes and statuses
- 400 Bad Request
- 403 Forbidden
- 404 Not Found
- 405 Method Not Allowed
- 406 Not Acceptable
- 409 Conflict
- 410 Gone
- 413 Payload Too Large
- 415 Unsupported Media Type
- 422 Unprocessable Entity
- 429 Too Many Requests
- The status of verifying the right to manage the site (ApiVerificationState)
- Rights verification methods (ApiVerificationType)
- Reasons for refusal to verify site management rights (ApiVerificationFailReason)
- Source of the Sitemap file (ApiSitemapSource)
- Type of Sitemap file (ApiSitemapType)
- Site indexing status (ApiHostDataStatus)
- Indexing indicators (ApiIndexingIndicator)
- Query indicators (ApiQueryIndicator)
- Query sorting order (ApiQueryOrderField)
- Device type indicators (ApiDeviceTypeIndicator)
- Indicators of external links (ApiExternalLinksIndicator)
- Internal link indicators (ApiInternalLinksBrokenIndicator)
- Reindexing request status (RecrawlStatusEnum)
- Issue categories on the site (SiteProblemSeverityEnum)
- State of the issue (ApiSiteProblemState)
- Type of site issue (ApiSiteProblemTypeEnum)
- HTTP status codes received by the robot during indexing (IndexingStatusEnum)
- Site page status in search results (ApiSearchEventEnum)
- Changes to important pages in the search (ApiImportantUrlChangeIndicator)
- Reasons for excluding the page from search results (ApiExcludedUrlStatus)
- Status of the RSS feed upload task (LoadStatus)
400 Bad Request
ENTITY_VALIDATION_ERROR
The request body validation failed.
{
"error_code": "ENTITY_VALIDATION_ERROR",
"error_message": "some string"
}
<Data>
<error_code>ENTITY_VALIDATION_ERROR</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
FIELD_VALIDATION_ERROR
Invalid parameter passed.
{
"error_code": "FIELD_VALIDATION_ERROR",
"error_message": "explicit error message",
"field_name": "some string",
"field_value": "some string",
"error_message": "explicit error message"
}
<Data>
<error_code>FIELD_VALIDATION_ERROR</error_code>
<field_name>some string</field_name>
<field_value>some string</field_value>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Field. |
|
Value. |
|
Error message. |
INVALID_URL
Wrong URL was passed.
{
"error_code": "INVALID_URL",
"error_message": "some string"
}
<Data>
<error_code>INVALID_URL</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
403 Forbidden
ACCESS_FORBIDDEN
The action is unavailable because the application doesn't have the necessary permissions.
{
"error_code": "ACCESS_FORBIDDEN",
"error_message": "explicit error message"
}
<Data>
<error_code>ACCESS_FORBIDDEN</error_code>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
INVALID_OAUTH_TOKEN
The OAuth token is missing or invalid.
{
"error_code": "INVALID_OAUTH_TOKEN",
"error_message": "explicit error message"
}
<Data>
<error_code>INVALID_OAUTH_TOKEN</error_code>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
INVALID_USER_ID
The ID of the user who issued the token differs from the one specified in the request. In the examples below, {user_id}
shows the correct uid
of the OAuth token owner.
{
"error_code": "INVALID_USER_ID",
"available_user_id": 1,
"error_message": "Invalid user id. {user_id} should be used."
}
<Data>
<error_code>INVALID_USER_ID</error_code>
<available_user_id>1</available_user_id>
<error_message>Invalid user id. {user_id} should be used.</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the user who allowed access. |
|
Error message. |
HOSTS_LIMIT_EXCEEDED
The number of sites in the user's site list exceeded the limit (the current limit is 1703).
{
"error_code": "HOSTS_LIMIT_EXCEEDED",
"limit": 1,
"error_message": "explicit error message"
}
<Data>
<error_code>HOSTS_LIMIT_EXCEEDED</error_code>
<limit>1</limit>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The limit on the number of added sites. |
|
Error message. |
404 Not Found
RESOURCE_NOT_FOUND
The resource at the requested path does not exist.
{
"error_code": "RESOURCE_NOT_FOUND",
"error_message": "some string"
}
<Data>
<error_code>RESOURCE_NOT_FOUND</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
HOST_NOT_INDEXED
The site isn't indexed yet.
{
"error_code": "HOST_NOT_INDEXED", //errorCode.
"host_id": "http:ya.ru:80", //id хоста. host id.
"error_message": "some string" //Error message.
}
<Data>
<error_code>HOST_NOT_INDEXED</error_code>
<host_id>http:ya.ru:80</host_id>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the requested site. |
|
Error message. |
HOST_NOT_LOADED
The site data isn't uploaded to Yandex.Webmaster yet.
{
"error_code": "HOST_NOT_LOADED",
"host_id": "http:ya.ru:80",
"error_message": "some string"
}
<Data>
<error_code>HOST_NOT_LOADED</error_code>
<host_id>http:ya.ru:80</host_id>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the requested site. |
|
Error message. |
HOST_NOT_VERIFIED
Site management rights are not verified.
{
"error_code": "HOST_NOT_VERIFIED",
"host_id": "http:ya.ru:80",
"error_message": "some string"
}
<Data>
<error_code>HOST_NOT_VERIFIED</error_code>
<host_id>http:ya.ru:80</host_id>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the requested site. |
|
Error message. |
HOST_NOT_FOUND
The site is not in the list of the user's sites.
{
"error_code": "HOST_NOT_FOUND",
"host_id": "http:ya.ru:80",
"error_message": "explicit error message"
}
<Data>
<error_code>HOST_NOT_FOUND</error_code>
<host_id>http:ya.ru:80</host_id>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the requested site. |
|
Error message. |
SITEMAP_NOT_FOUND
The Sitemap for the site wasn't found.
{
"error_code": "SITEMAP_NOT_FOUND",
"host_id": "http:ya.ru:80",
"sitemap_id": "c7-fe:80-c0",
"error_message": "some string"
}
<Data>
<error_code>SITEMAP_NOT_FOUND</error_code>
<host_id>http:ya.ru:80</host_id>
<sitemap_id>c7-fe:80-c0</sitemap_id>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the requested site. |
|
The |
|
Error message. |
SITEMAP_NOT_ADDED
The Sitemap file is missing.
{
"error_code": "SITEMAP_NOT_ADDED",
"host_id": "http:ya.ru:80",
"sitemap_id": "c7-fe:80-c0",
"error_message": "some string"
}
<Data>
<error_code>SITEMAP_NOT_ADDED</error_code>
<host_id>http:ya.ru:80</host_id>
<sitemap_id>c7-fe:80-c0</sitemap_id>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
ID of the requested site. |
|
The |
|
Error message. |
TASK_NOT_FOUND
Failed to find a task with the specified ID.
{
"error_code": "TASK_NOT_FOUND",
"error_message": "some string"
}
<Data>
<error_code>TASK_NOT_FOUND</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
QUERY_ID_NOT_FOUND
The specified search query ID does not exist.
{
"error_code": "QUERY_ID_NOT_FOUND",
"error_message": "some string"
}
<Data>
<error_code>QUERY_ID_NOT_FOUND</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
405 Method Not Allowed
The HTTP method is not supported for this resource.
{
"error_code": "METHOD_NOT_ALLOWED",
"error_message": "explicit error message"
}
<Data>
<error_code>METHOD_NOT_ALLOWED</error_code>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
406 Not Acceptable
The content types passed in the Accept header are not supported.
{
"error_code": "CONTENT_TYPE_UNSUPPORTED",
"acceptable_types": [
"some string", ...
],
"error_message": "explicit error message"
}
<Data>
<error_code>CONTENT_TYPE_UNSUPPORTED</error_code>
<acceptable_type>some string</acceptable_type>
...
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
List of supported content types. |
|
Error message. |
409 Conflict
URL_ALREADY_ADDED
The URL was already added for reindexing.
{
"error_code": "URL_ALREADY_ADDED",
"error_message": "some string"
}
<Data>
<error_code>URL_ALREADY_ADDED</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
HOST_ALREADY_ADDED
The site with the specified address is already added to the user's sites list.
{
"error_code": "HOST_ALREADY_ADDED",
"host_id": "http:ya.ru:80",
"verified": false,
"error_message": "some string"
}
<Data>
<error_code>HOST_ALREADY_ADDED</error_code>
<host_id>http:ya.ru:80</host_id>
<verified>false</verified>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The site ID. |
|
Indicates if the site rights are verified. |
|
Error message. |
VERIFICATION_ALREADY_IN_PROGRESS
The rights verification process is in progress.
{
"error_code": "VERIFICATION_ALREADY_IN_PROGRESS",
"verification_type": "META_TAG",
"error_message": "some string"
}
<Data>
<error_code>VERIFICATION_ALREADY_IN_PROGRESS</error_code>
<verification_type>META_TAG</verification_type>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The verification method being processed (ApiExplicitVerificationType). |
|
Error message. |
TEXT_ALREADY_ADDED
The text you added earlier.
{
"error_code": "TEXT_ALREADY_ADDED",
"error_message": "some string"
}
<Data>
<error_code>TEXT_ALREADY_ADDED</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
SITEMAP_ALREADY_ADDED
The Sitemap was already added.
{
"error_code": "SITEMAP_ALREADY_ADDED",
"sitemap_id": "c7-fe:80-c0",
"error_message": "some string"
}
<Data>
<error_code>SITEMAP_ALREADY_ADDED</error_code>
<sitemap_id>c7-fe:80-c0</sitemap_id>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The |
|
Error message. |
410 Gone
Resource unavailable
{
"error_code": "UPLOAD_ADDRESS_EXPIRED",
"valid_until": "2016-01-01T00:00:00,000+0300",
"error_message": "some string"
}
<Data>
<error_code>UPLOAD_ADDRESS_EXPIRED</error_code>
<valid_until>2016-01-01T00:00:00,000+0300</valid_until>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The date and time until which the URL for task creation is available. |
|
Error message. |
413 Payload Too Large
The file size exceeds the limits.
{
"error_code": "REQUEST_ENTITY_TOO_LARGE",
"error_message": "some string"
}
<Data>
<error_code>REQUEST_ENTITY_TOO_LARGE</error_code>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Error message. |
415 Unsupported Media Type
CONTENT_TYPE_UNSUPPORTED
The content type in the request is not supported.
{
"error_code": "CONTENT_TYPE_UNSUPPORTED",
"supported_content_types": [
"some string", ...
],
"error_message": "explicit error message"
}
<Data>
<error_code>CONTENT_TYPE_UNSUPPORTED</error_code>
<supported_content_type>some string</supported_content_type>
...
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
List of supported content types. |
|
Error message. |
CONTENT_ENCODING_UNSUPPORTED
The request encoding type is not supported.
{
"error_code": "CONTENT_ENCODING_UNSUPPORTED",
"supported_content_encodings": [
"some string"
],
"error_message": "some string"
}
<Data>
<error_code>CONTENT_ENCODING_UNSUPPORTED</error_code>
<supported_content_encoding>some string</supported_content_encoding>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
List of supported encoding types. |
|
Error message. |
422 Unprocessable Entity
The passed text is too short or too long.
{
"error_code": "TEXT_LENGTH_CONSTRAINTS_VIOLATION",
"max_length": 1,
"min_length": 1,
"actual_length": 1,
"error_message": "explicit error message"
}
<Data>
<error_code>TEXT_LENGTH_CONSTRAINTS_VIOLATION</error_code>
<max_length>1</max_length>
<min_length>1</min_length>
<actual_length>1</actual_length>
<error_message>explicit error message</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
Maximum length. |
|
Minimum length. |
|
The length of the text in the request. |
|
Error message. |
429 Too Many Requests
QUOTA_EXCEEDED
The daily quota for requests was exceeded.
{
"error_code": "QUOTA_EXCEEDED",
"daily_quota": 1,
"exceeded_until": "2016-01-01T00:00:00,000+0300",
"error_message": "some string"
}
<Data>
<error_code>QUOTA_EXCEEDED</error_code>
<daily_quota>1</daily_quota>
<exceeded_until>2016-01-01T00:00:00,000+0300</exceeded_until>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The maximum number of requests per day. |
|
Time when the new quota starts. |
|
Error message. |
TOO_MANY_REQUESTS_ERROR
Too many requests sent.
{
"error_code": "TOO_MANY_REQUESTS_ERROR",
"daily_quota": 1,
"exceeded_until": "2016-01-01T00:00:00,000+0300",
"error_message": "some string"
}
<Data>
<error_code>TOO_MANY_REQUESTS_ERROR</error_code>
<daily_quota>1</daily_quota>
<exceeded_until>2016-01-01T00:00:00,000+0300</exceeded_until>
<error_message>some string</error_message>
</Data>
Parameter |
Description |
|
Error code. |
|
The maximum number of requests per day. |
|
Time when the new quota starts. |
|
Error message. |
The status of verifying the right to manage the site (ApiVerificationState)
Status |
Description |
|
Verification wasn't completed and rights are not confirmed. |
|
The rights are verified. |
|
The rights verification is in progress. |
|
Verification was performed but rights are not confirmed. |
|
An unexpected error occurred when verifying the rights. |
Rights verification methods (ApiVerificationType)
Verification method |
Whether a verification check can be requested |
Description |
|
No |
Automatic rights verification (deprecated; only for *.narod.ru sites). |
|
No |
Rights were delegated. |
|
Yes |
Verifying rights with the DNS record. |
|
Yes |
Placing an HTML file in the site's root directory. |
|
Yes |
Adding a meta tag to the site's home page header. |
|
No |
Rights verification via Yandex.Mail for Domains. |
|
No |
Placing a text file in the site's root directory. |
Explicit methods of rights verification (ApiExplicitVerificationType)
Verification method |
Whether a verification check can be requested |
Description |
|
Yes |
Verifying rights with the DNS record. |
|
Yes |
Placing an HTML file in the site's root directory. |
|
Yes |
Adding a meta tag to the site's home page header. |
Reasons for refusal to verify site management rights (ApiVerificationFailReason)
Reason for refusal |
Description |
|
Delegation of site management rights was canceled. |
|
The specified DNS record doesn't exist. |
|
The meta tag is missing in the site's home page header. |
|
Verification of site management rights via Yandex.Mail for Domain isn't allowed for this site. |
|
The HTML file content is set incorrectly. |
Source of the Sitemap file (ApiSitemapSource)
Source |
Description |
|
Sitemap is specified in the site's |
|
The user added the Sitemap in Yandex.Webmaster. |
|
Sitemap found in another (index) |
Type of Sitemap file (ApiSitemapType)
Type |
Description |
|
Normal |
|
The |
Site indexing status (ApiHostDataStatus)
Source |
Description |
|
The site isn't indexed yet. |
|
The site data isn't uploaded to Yandex.Webmaster yet. |
|
The site is indexed. The data is available in Yandex.Webmaster. |
Indexing indicators (ApiIndexingIndicator)
Indicator |
Description |
|
Pages in the search. |
|
Downloaded pages. |
|
Pages downloaded with a 2XX code. |
|
Pages downloaded with a 3XX code. |
|
Pages downloaded with a 4XX code. |
|
Pages downloaded with a 5XX code. |
|
Failed to download. |
|
Excluded pages. |
|
Excluded at the request of the resource owner (4XX codes or prohibited in |
|
Excluded due to a site error. |
|
Excluded as not supported by the Yandex robots. |
Query indicators (ApiQueryIndicator)
Indicator |
Description |
|
The number of displays. |
|
The number of clicks. |
|
The average position of the display. |
|
Average click position. |
Query sorting order (ApiQueryOrderField)
Indicator |
Description |
|
The number of displays. |
|
The number of clicks. |
Device type indicators (ApiDeviceTypeIndicator)
Indicator |
Description |
|
All device types. |
|
Computers. |
|
Mobile phones and tablets. |
|
Mobile phones. |
|
Tablets. |
If the request does not specify a device type indicator, the default value is ALL
.
Indicators of external links (ApiExternalLinksIndicator)
Indicator |
Description |
|
The total number of known external links to the host. |
Internal link indicators (ApiInternalLinksBrokenIndicator)
Indicator |
Description |
|
The total number of known external links to the site. |
|
The page doesn't exist or is prohibited from indexing. |
|
Not supported by the main Search indexing robot. |
Reindexing request status (RecrawlStatusEnum)
Indicator |
Description |
|
The request is being processed. |
|
The robot crawled the URL |
|
The robot failed to crawl the page. Make sure it is accessible to the robot and the server responds fast enough. |
Issue categories on the site (SiteProblemSeverityEnum)
Indicator |
Description |
Note |
|
Fatal errors. Checks the server connection, site availability for indexing, security and compliance with Yandex guidelines. |
This may lead to excluding individual pages or the entire site from search results. We recommend monitoring these errors and fixing them as soon as possible. |
|
Critical issues. Checks the presence and validity of the SSL certificate, the number of broken internal links, and the server response time. |
This may lead to excluding individual pages or the entire site from search results. We recommend monitoring these errors and fixing them as soon as possible. |
|
Possible issues. Checks the Sitemap and robots.txt file validity, settings for displaying non-existent files, the number of duplicate pages, the presence of redirects, annoying ads, and so on. |
May affect the quality and speed of site indexing. |
|
Recommendations. Usually includes suggestions for improving the site's ranking in search results. |
Use them to improve the site's ranking in search results. |
State of the issue (ApiSiteProblemState)
Indicator |
Description |
|
Present on the site. |
|
Missing. |
|
Not enough data to determine if there are issues. |
Type of site issue (ApiSiteProblemTypeEnum)
Indicator |
Description |
FATAL |
|
DISALLOWED_IN_ROBOTS |
The site is prohibited for indexing in the |
DNS_ERROR |
Failed to connect to the server due to a DNS error. |
MAIN_PAGE_ERROR |
The site's home page returns an error. |
THREATS |
Security threats or issues were detected. |
CRITICAL |
|
SLOW_AVG_RESPONSE_TIME |
Slow server response. For more information, see this Help section. |
SSL_CERTIFICATE_ERROR |
Invalid SSL certificate settings. For more information, see this Help section. |
POSSIBLE_PROBLEM |
|
BAD_ADVERTISEMENT |
Ad formats do not comply with IAB Russia recommendations. |
DOCUMENTS_MISSING_DESCRIPTION |
Many pages do not have the Description meta tag. |
DOCUMENTS_MISSING_TITLE |
The |
ERROR_IN_ROBOTS_TXT |
Errors in the |
ERRORS_IN_SITEMAPS |
Errors found in the |
MAIN_MIRROR_IS_NOT_HTTPS |
The site's main mirror doesn't use the HTTPS protocol We recommend using the HTTPS protocol. For more information and instructions on switching protocols, see the Help. |
MAIN_PAGE_REDIRECTS |
The main page redirects to another site. |
NO_METRIKA_COUNTER_CRAWL_ENABLED |
Site crawling using Yandex.Metrica tags isn't enabled. For more information about site indexing using the Yandex.Metrica tag, see the Help. |
NO_ROBOTS_TXT |
The |
NO_SITEMAPS |
The |
NO_SITEMAP_MODIFICATIONS |
The |
NON_WORKING_VIDEO |
The robot failed to index videos on the site. |
SOFT_404 |
The display of non-existent files and pages is configured incorrectly. |
TOO_MANY_DOMAINS_ON_SEARCH |
The site subdomains are found in the search results. |
TOO_MANY_PAGE_DUPLICATES |
Too many duplicate pages. |
RECOMMENDATION |
|
FAVICON_PROBLEM |
The |
INCOMPLETE_SPRAV_COMPANY_PROFILE |
Yandex.Directory contains incomplete information about the organization. |
NO_CHATS |
Chats on Search are missing. |
NO_METRIKA_COUNTER |
Yandex.Metrica tag error |
NO_REGIONS |
The site region isn't set. |
NOT_IN_SPRAV |
The site isn't registered in Yandex.Directory. |
NOT_MOBILE_FRIENDLY |
The site isn't optimized for mobile devices. |
HTTP status codes received by the robot during indexing (IndexingStatusEnum)
Indicator |
Description |
|
For more information about statuses, see the help section. |
|
Unsupported HTTP code, connection error, or other error. |
Site page status in search results (ApiSearchEventEnum)
Indicator |
Description |
|
The page appeared in search results. |
|
The page was removed from search results. |
Changes to important pages in the search (ApiImportantUrlChangeIndicator)
Indicator |
Description |
|
The HTTP response code received by the robot when crawling the page changed. |
|
The page status in the search changed (it was added or removed). |
|
The page title changed. |
|
The Description meta tag content changed. |
Reasons for excluding the page from search results (ApiExcludedUrlStatus)
Indicator |
Description |
|
The robot doesn't know about the page, or it was unavailable for a long time. Submit the page for reindexing. |
|
When trying to access the site, the robot could not connect to the server. Check the server response and make sure that the Yandex robot isn't blocked by the hosting provider. The site is indexed automatically when it becomes available for the robot. For information about the user agent robots, see the help section. |
|
The page redirects to another page. The target page is indexed (RedirectTarget). Check the indexing of the target page. |
|
An error occurred when accessing the “HTTP error” page. Check the server response. If the problem persists, contact your site administrator or the server administrator. If the page is already available, submit it for reindexing. |
|
The page is indexed by the canonical URL specified in the rel="canonical" attribute in its source code. Correct or delete the attribute if it is specified incorrectly. The robot will track the changes automatically. |
|
The page belongs to a secondary site mirror, so it was excluded from the search. |
|
When trying to access the page, the robot couldn't get its content. Check the server response or the presence of prohibiting HTML elements. If the problem persists, contact your site administrator or the server administrator. If the page is already available, send it for reindexing. |
|
Site indexing is prohibited in the |
|
Page indexing is prohibited in the robots.txt file. The robot will automatically crawl the page when it becomes available for indexing. |
|
The page duplicates a site page that is already in the search. For more information, see the help section. |
|
The page has been removed from search results due to low quality as determined by a special algorithm. If the algorithm finds the page relevant to users' search queries, it will appear in the search automatically. |
|
The page was excluded from the search after the robot processed the Clean-param directive. To get the page indexed, edit the |
|
The page is excluded because the robots meta tag has the noindex value. |
|
The robot does not have updated data for the page. Check the server response or the presence of prohibiting HTML elements. If the page can't be accessed by the robot, contact the administrator of your site or server. If the page is already available, send it for reindexing. |
Status of the RSS feed upload task (LoadStatus)
Indicator |
Description |
|
The file is checked for errors. |
|
The file is loaded and it doesn't contain errors. |
|
XML elements in the file aren't supported by Yandex or are specified incorrectly. |
|
The file contains errors (for example, duplicate XML elements). |
Description
Error code.
Description
Error message.
Description
Field.
Description
Value.
Description
ID of the user who allowed access.
Description
The limit on the number of added sites.
Description
ID of the requested site.
Description
The Sitemap
file ID.
Description
List of supported content types.