Google Play StoreやiOSのApp Storeからランキング情報を取得するためのRubyGem「kitaro-tn/store_api」の紹介です。
🗽 インストール手順
Gemfile
に次の内容を追加してbundle install
を実行。
# Google Play Store & App Store Ranking |
😎 利用手順
Google Play Storeからランキングを取得
Google Play Storeからランキング情報を取得して、結果をハッシュで確認する手順です。
ranking = StoreApi::GooglePlay::Apps::Ranking.new('topgrossing','GAME') |
iOS App Storeからランキングを取得
Apple(iOS)のApp Storeからランキングを取得して結果をハッシュで確認する手順です。
ranking = StoreApi::AppStore::Apps::Ranking.new('topgrossingapplications', '7001', 'jp', 20) |