use API::Instagram; print "test API::Intagram\n"; my $instagram = API::Instagram->new({ client_id => '32symbol_hash_key_cid', client_secret => '32symbol_hash_key_cs', redirect_uri => 'http://kutkhtravel.com/' }); printf "auth_url: %s\n", $instagram->get_auth_url; my $code = "I didn't find in documentation, what is this code, and how do I get it"; $instagram->code($code); my $access_token = $instagram->get_access_token; $instagram->access_token($access_token); #Then, I guess, I can use other fetures, such as reading posts, etc., but I don't get to this point