AG
AppEngine-Google
Google App Engine web crawler bot
About this crawler
AppEngine-Google is a web crawler identified by the regular-expression pattern AppEngine-Google in the User-Agent request header. It is categorised as search-engine. Use the regex above to detect, log, allow, or block AppEngine-Google traffic in your web server, CDN edge rules, or robots.txt.
Block-rate · top 25k sites
No block-rate data for this crawler.
Technical details
- Name
- AppEngine-Google
- Pattern
AppEngine-Google- Tags
- search-engine
- Added
- 2017/11/02
- Instances
- 2 known sample(s)
Sample User-Agent strings
AppEngine-Google; (+http://code.google.com/appengine; appid: example)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 AppEngine-Google; (+http://code.google.com/appengine; appid: s~feedly-nikon3)
Block this crawler
robots.txt — disallow AppEngine-Google:
User-agent: AppEngine-Google
Disallow: /
Apache .htaccess — return 403:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} AppEngine-Google [NC]
RewriteRule .* - [F,L]
Nginx — return 403 inside a server block:
if ($http_user_agent ~* "AppEngine-Google") {
return 403;
}
← back to all crawlers