Module: StoreApi::AppStore

Defined in:
lib/store_api/app_store.rb,
lib/store_api/app_store/category_id.rb,
lib/store_api/app_store/apps/details.rb,
lib/store_api/app_store/apps/ranking.rb,
lib/store_api/app_store/ranking_type.rb

Defined Under Namespace

Modules: Apps

Constant Summary collapse

HOST =
'itunes.apple.com'
HTTPS =
true
CATEGORY_ID_LIST =
[
  '6018', # Books
  '6000', # Business
  '6022', # Catalogs
  '6017', # Education
  '6016', # Entertainment
  '6015', # Finance
  '6023', # Food & Drink
  '6014', # Games
  '6013', # Health & Fitness
  '6012', # Lifestyle
  '6020', # Medical
  '6011', # Music
  '6010', # Navigation
  '6009', # News
  '6021', # Newsstand
  '6008', # Photo & Video
  '6007', # Productivity
  '6006', # Reference
  '6005'  # Social Networking
]
RANKING_TYPE_LIST =
[
  'topgrossingapplications', # Top Grossing Applications
  'topgrossingipadapplications', # Top Grossing iPad Applications
  'newapplications', # New Applications
  'newfreeapplications', # New Free Applications
  'newpaidapplications', # New Paid Applications
  'topfreeapplications', # Top Free Applications
  'topfreeipadapplications', # Top Free iPad Applications
  'toppaidapplications', # Top Paid Applications
  'toppaidipadapplications' # Top Paid iPad Applications
]