iOS / Macアプリのランキングやレビューを取得することができるコマンドラインツール「appstat」が公開されています。コンパイル方法は簡単でgit cloneしてmakeするだけ。
git clone https://github.com/mattlawer/appstat.git cd appstat make # 'make ios' to build for iOS make install
アプリ毎にユニークな識別子IDや、検索ワードを使い、アプリのラインキングやレビューを取得することができます。
Usage : main -a[-g -l -r -p -f] -s : search an app -a : the app ID to use -c : the country code to use for the search option (ex: US) -g : the genre code (ex: 6012) -r : list reviews -f : search top free -p : search top paid -l : 1-200 example: appstat -s Omnistat -g 6002 appstat -a 898245825 -r
例えばMac版Evernoteのレビューを取得したい場合「appstat -a 406056744 -r」のように指定します。
実はApp Storeにはアプリの各種情報を取得することができるSearch APIやレビューAPIというものが存在し、appestatはその情報をHTTP経由で取得しているのです。
単体でも便利なアプリですが、main.mを参考にしてAPIの使い方を学習し、自作プログラムに組み込んだり…といった用途でも使えるかもしれません。