The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Blog::Metadata::AccountAutoDiscovery - Extract online accounts from a page

SYNOPSIS

use WWW::Blog::Metadata;
my $meta = WWW::Blog::Metadata->extract_from_uri($uri)
    or die WWW::Blog::Metadata->errstr;

## or

my $meta = WWW::Blog::Metadata->extract_from_html(\$html)
    or die WWW::Blog::Metadata->errstr;

# in scalar context, returns an array-ref
my $online_accounts_ref = $meta->online_accounts;
print $online_accounts->[0]{account};
print $online_accounts->[0]{service};

# in list context, returns an array
my @online_accounts_array = $meta->online_accounts;
print $online_accounts_array[0]->{account};
print $online_accounts_array[0]->{service};

DESCRIPTION

WWW::Blog::Metadata::AccountAutoDiscovery is a WWW::Blog::Metadata plugin to look for and extract online accounts embedded in a page.

METHODS

online_accounts

    # in scalar context, returns an array-ref
    my $online_accounts_ref = $meta->online_accounts;
    print $online_accounts->[0]{account};
    print $online_accounts->[0]{service};
    
    # in list context, returns an array
    my @online_accounts_array = $meta->online_accounts;
    print $online_accounts_array[0]->{account};
    print $online_accounts_array[0]->{service};

    Extracts and returns online accounts embedded in the specified page.

    The return value consists of hash-refs which contain two fields, account and service.

SEE ALSO

  • WWW::Blog::Metadata

    You might as well consult the documentaion of WWW::Blog::Metadata for more usage.

  • HTML::AccountAutoDiscovery

    WWW::Blog::Metadata::AccountAutoDiscovery only delegates the job wholly to HTML::AccountAutoDiscovery.

AUTHOR

Kentaro Kuribayashi, <kentaro@cpan.org>

COPYRIGHT AND LICENSE (The MIT License)

Copyright (c) 2006, Kentaro Kuribayashi <kentaro@cpan.org>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.