| Search-Sitemap documentation | Contained in the Search-Sitemap distribution. |
Search::Sitemap::Pinger::Google - Search::Sitemap::Pinger for Google
Given a url for a sitemap file, returns the URL that you need to use in a GET request in order to submit the provided url to the Search Engine.
Jason Kohles, <email@jasonkohles.com>
Copyright 2005-2009 by Jason Kohles
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Search-Sitemap documentation | Contained in the Search-Sitemap distribution. |
package Search::Sitemap::Pinger::Google; use strict; use warnings; our $VERSION = '2.13'; our $AUTHORITY = 'cpan:JASONK'; use Moose; extends 'Search::Sitemap::Pinger'; use namespace::clean -except => 'meta'; sub submit_url_for { my ( $self, $url ) = @_; my $submit = URI->new( 'http://www.google.com/webmasters/tools/ping' ); $submit->query_form( sitemap => $url ); return $submit; } no Moose; __PACKAGE__->meta->make_immutable; 1; __END__