NAME
URI::Parse::Instagram - Parse information from an instagram URL
VERSION
This document describes version 0.001 of URI::Parse::Instagram (from
Perl distribution URI-Parse-Instagram), released on 2025-03-27.
FUNCTIONS
parse_instagram_url
Usage:
parse_instagram_url($url) -> hash
Parse information from an instagram URL.
Examples:
* Example #1 (insta/USER #1):
parse_instagram_url("https://www.instagram.com/foo"); # -> { user => "foo" }
* Example #2 (insta/USER #2):
parse_instagram_url("https://www.instagram.com/foo.bar/"); # -> { user => "foo.bar" }
* Example #3 (insta/USER #3):
parse_instagram_url("https://www.instagram.com/foo_bar?igsh=blah&utm_source=qr");
Result:
{ user => "foo_bar" }
* Example #4 (unknown):
parse_instagram_url("https://www.google.com/"); # -> undef
Return a hash of information from an Instagram URL, or undef if URL
cannot be parsed. Can potentially return "_errors" or "_warnings" keys,
each being an array of error/warning messages.
This function is not exported by default, but exportable.
Arguments ('*' denotes required arguments):
* $url* => *str*
(No description)
Return value: (hash)
HOMEPAGE
Please visit the project's homepage at
<https://metacpan.org/release/URI-Parse-Instagram>.
SOURCE
Source repository is at
<https://github.com/perlancar/perl-URI-Parse-Instagram>.
SEE ALSO
Regexp::Pattern::Instagram
Sah::SchemaBundle::instagram
AUTHOR
perlancar <perlancar@cpan.org>
CONTRIBUTING
To contribute, you can send patches by email/via RT, or send pull
requests on GitHub.
Most of the time, you don't need to build the distribution yourself. You
can simply modify the code, then test via:
% prove -l
If you want to build the distribution (e.g. to try to install it locally
on your system), you can install Dist::Zilla,
Dist::Zilla::PluginBundle::Author::PERLANCAR,
Pod::Weaver::PluginBundle::Author::PERLANCAR, and sometimes one or two
other Dist::Zilla- and/or Pod::Weaver plugins. Any additional steps
required beyond that are considered a bug and can be reported to me.
COPYRIGHT AND LICENSE
This software is copyright (c) 2025 by perlancar <perlancar@cpan.org>.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
BUGS
Please report any bugs or feature requests on the bugtracker website
<https://rt.cpan.org/Public/Dist/Display.html?Name=URI-Parse-Instagram>
When submitting a bug or request, please include a test-file or a patch
to an existing test-file that illustrates the bug or desired feature.