hatena, perl | 02:11 | | とりあえず動く程度の能力。 #!/usr/bin/perl use utf8; use strict; use warnings; use CGI qw/-utf8 :standard/; use WWW::Instapaper::Client; # はてなブックマーク Web Hook から URL を取得する my $req = CGI->new(); if ($req->param('key') ne 'hogefuga') { # API Key が一致しなかった場合エラー終了 die "Authentication failed"; } my $url = $req->param('url'); my $title = $req->param('title'); my $comment = $req->param('comment