API-Instagram
view release on metacpan or search on metacpan
lib/API/Instagram/Search.pm view on Meta::CPAN
);
See L<http://instagram.com/developer/endpoints/users/#get_users_search>.
B<media> parameters:
my $search = $instagram->search('media');
$search->find(
lat => 48.858844, # Latitude of the center search coordinate. If used, lng is required.
lng => 2.294351, # Longitude of the center search coordinate. If used, lat is required.
min_timestamp => 1408720000, # A unix timestamp. All media returned will be taken later than this timestamp.
max_timestamp => 1408723333, # A unix timestamp. All media returned will be taken earlier than this timestamp.
distance => 500, # Default is 1km (distance=1000), max distance is 5km.
);
See L<http://instagram.com/developer/endpoints/media/#get_media_search>.
B<tag> parameters:
my $search = $instagram->search('tag');
$search->find(
q => 'perl', # A valid tag name without a leading #.
( run in 0.616 second using v1.01-cache-2.11-cpan-e1769b4cff6 )