NAME

Net::Trackback::Ping - an object representing a Trackback ping.

SYNOPSIS

use Net::Trackback::Client;
use Net::Trackback::Ping;
my $ping = Net::Trackback::Ping->new();
$ping->title('Net::Trackback Test');
$ping->url('http://search.cpan.org/search?query=Trackback');
$ping->ping_url('http://www.movabletype.org/mt/trackback/62');
my $client = Net::Trackback::Client->new();
my $msg = $client->send_ping($ping);
print $msg->to_xml;

METHODS

Net::Trackback::Ping->new([$hashref])

Constuctor method. It will initialize the object if passed a hash reference. Recognized keys are url, ping_url, id, title, excerpt, and blogname. These keys correspond to the methods like named methods.

Net::Trackback::Ping->parse($CGI)

A method that extracts ping data from an HTTP request and returns a ping object. In the event a bad ping has been passed in the method will return the appropriate Trackback error message as a Net::Trackback::Message object. One required parameter, a reference to a CGI object or some other that has a param method that works just like it. See the list of recognized keys in the new method.

$ping->url([$url])

Accessor to a resource URL. Passing in an optional string parameter sets the value. This value is required to make a ping.

$ping->ping_url([$url])

Accessor to the URL to ping with the resource's Trackback information. Passing in an optional string parameter sets the value. This value is required to make a ping.

$ping->id([$id])

Accessor to the remote resource ID that is to be pinged. Passing in an optional string parameter sets the value.

$ping->title([$title])

Accessor to the title of resource that is to be pinged. Passing in an optional string parameter sets the value.

$ping->excerpt([$excerpt]);

A brief plain text description of the resource at the other end of the url. Passing in an optional string parameter sets the value.

NOTE: While the Trackback specification doesn't specify a limit to the size of an excerpt, some implementations do. For instance as of Movable Type 2.61, Trackback excerpts cannot exceed 255 characters.

$ping->blog_name([$source]);

Accessor to the source of the ping. Passing in an optional string parameter sets the value.

$ping->to_hash

Returns a hash of the object's current state.

$ping->to_urlencoded

Returns a URL encoded string of the object's current state.

AUTHOR & COPYRIGHT

Please see the Net::Trackback manpage for author, copyright, and license information.

4 POD Errors

The following errors were encountered while parsing the POD:

Around line 84:

=begin without a target?

Around line 104:

'=item' outside of any '=over'

Around line 165:

You forgot a '=back' before '=head1'

Around line 172:

'=end' without a target?