0.01
No commit activity in last 3 years
No release in over 3 years
A simple port of Apple itunes Autoingestion tool to ruby.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

itunes_ingestion

A Ruby client library for fetching and downloading iTunes Connect sales report.

A note about versions

Versions 0.3.x is a breaking change, please update code that based on pre 0.3.x versions.

Getting started

To fetch report, use following code:

require "itunes_ingestion"

fetcher = ITunesIngestion::Fetcher.new("username", "password", "vadnumber")
report_data = fetcher.fetch("20120202")

To parse fetched report, use following code:

require "itunes_ingestion"

report = ITunesIngestion::SalesReportParser.parse(report_data)

Copyright

Copyright (c) 2012 Francis Chong. See LICENSE for details.