AppStoreのレビュー&ランキング一覧を取得してくれるコマンド”appstat”がGitHubに登場しています。詳細は以下から。
[AppStore reviews and rankings for any iOS app with appstat. – Twitter]
インストール方法はGitHubからcloneしてmake & make installするだけで、iOSのターミナルで使用したい場合はmakeの後に”make ios”のオプションを追加。
I updated the appstat Makefile to build fat binaries for all iOS devices in case you have an iOS Terminal 🙂 http://t.co/VP5Onue9q3
git clone https://github.com/mattlawer/appstat.git
cd appstat
make # ‘make ios’ to build for iOS
make install
取得できるのはアプリのレビューと各国AppStoreでのランキング順位で以下のオプションが用意されています。
Usage : appstat -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
ランキング取得
ランキングを取得したい場合は”-s <search>”で検索するか、”-a <app_id>”でアプリを指定、デフォルトではランキング200位までに入っている国と順位を表示してくれます。(ドラゴンクエストVとGoat Simulatorのランキングを表示した例)
レビュー取得
レビュー取得の場合は”-r”オプションを付けて”-a <app_id>”でアプリを指定。各国のレビューを取得してくれるので、国別に絞り込みたい場合は”JP”などのカントリーコードでgrepする必要があります。(Twitterのレビューを表示した例)
関連リンク:
・mattlawer/appstat – GitHub
コメント