Safe Google Bots

GoogleProducer

Operated by Google

Quick Facts

User-Agent:
GoogleProducer
Category:
Google Bots
Operator:
Google
Safety:
Safe
Blocking Impact:
Medium - Affects a specific feature, not rankings
SEO Impact Score:
6/10

What is GoogleProducer?

GoogleProducer fetches article content for Google News publisher tooling, supporting the editorial and syndication side of Google News rather than general search indexing.

GoogleProducer fetches article content for Google News publisher tooling, supporting the editorial and syndication side of Google News rather than general search indexing. GoogleProducer identifies itself with the user-agent token GoogleProducer. You can control it with a User-agent: GoogleProducer group in robots.txt. Robots.txt is voluntary, so for hard enforcement combine it with server-level blocking.

What happens if you block GoogleProducer?

⚠️ Blocking GoogleProducer does not remove you from Google Search, because it is not the general indexing crawler and it is distinct from Googlebot-News discovery. It affects the Google News publisher tooling that fetches article content for editorial and syndication workflows. If your site is not in Google News, blocking it has no practical effect.
Allow it if your site is published in Google News.

How to control GoogleProducer with robots.txt

<code>User-agent: GoogleProducer</code> - Matching is case-insensitive. Robots.txt is fetched from the root of each subdomain separately.

Block completely (robots.txt)
User-agent: GoogleProducer Disallow: /
Allow all (robots.txt)
User-agent: GoogleProducer Allow: /
Block private only (robots.txt)
User-agent: GoogleProducer Disallow: /private/ Disallow: /api/ Disallow: /admin/ Allow: /
Nginx server block
# Nginx: Block GoogleProducer if ($http_user_agent ~* "GoogleProducer") { return 403 "Bot blocked"; }
Apache .htaccess
# Apache: Block GoogleProducer SetEnvIfNoCase User-Agent "GoogleProducer" bad_bot Order Allow,Deny Allow from all Deny from env=bad_bot
Meta robots tag
<meta name="robots" content="noindex, nofollow">
X-Robots-Tag header
X-Robots-Tag: noindex, nofollow

Is GoogleProducer safe to allow?

Yes, GoogleProducer is a **safe and legitimate** crawler. It is operated by Google and documented publicly, and it identifies itself honestly with the token GoogleProducer. Allow it if your site is published in Google News.
Verify by reverse-DNS: genuine Google fetchers resolve to googlebot.com, google.com or googleusercontent.com. Confirm the forward lookup matches the original IP.

What does GoogleProducer do?

Understanding what GoogleProducer is for helps you decide whether to allow or block it.

  • Fetches article content for Google News tooling
  • Supports publisher and editorial workflows
  • Distinct from Googlebot-News discovery crawling
  • Relevant to sites in Google News
  • Respects robots.txt directives

Frequently Asked Questions

What is the user-agent string for GoogleProducer?
GoogleProducer uses the token GoogleProducer. Match it case-insensitively in robots.txt and in any server-level rule.
Is GoogleProducer safe?
Yes. GoogleProducer is operated by Google and is documented publicly. GoogleProducer fetches article content for Google News publisher tooling, supporting the editorial and syndication side of Google News rather than general search indexing.
Will blocking GoogleProducer hurt my SEO?
Blocking GoogleProducer does not remove you from Google Search, because it is not the general indexing crawler and it is distinct from Googlebot-News discovery. It affects the Google News publisher tooling that fetches article content for editorial and syndication workflows. If your site is not in Google News, blocking it has no practical effect.
How do I block GoogleProducer in robots.txt?
Add these lines to /robots.txt:
User-agent: GoogleProducer
Disallow: /
To restrict only part of your site, disallow specific paths and allow the rest.